Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 9 Jun 2021 22:19:44 GMT
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: f8edb3f9c725 - stable/13 - libcrypto: Add symbol versions for symbols added since 1.1.1d.
Message-ID:  <202106092219.159MJiiS023744@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by jhb:

URL: https://cgit.FreeBSD.org/src/commit/?id=f8edb3f9c725e5b4a60981ee19a56395b0497e13

commit f8edb3f9c725e5b4a60981ee19a56395b0497e13
Author:     John Baldwin <jhb@FreeBSD.org>
AuthorDate: 2021-05-28 22:18:15 +0000
Commit:     John Baldwin <jhb@FreeBSD.org>
CommitDate: 2021-06-09 21:53:42 +0000

    libcrypto: Add symbol versions for symbols added since 1.1.1d.
    
    While here, trim a spurious local: I missed when added SSL_sendfile.
    
    PR:             255277
    Reported by:    yuri
    Reviewed by:    jkim
    Differential Revision:  https://reviews.freebsd.org/D30483
    
    (cherry picked from commit 7ad70d22c667173586c04fc13dd315995d78fbbf)
---
 secure/lib/libcrypto/Version.map | 17 ++++++++++++++++-
 secure/lib/libssl/Version.map    |  1 -
 2 files changed, 16 insertions(+), 2 deletions(-)

diff --git a/secure/lib/libcrypto/Version.map b/secure/lib/libcrypto/Version.map
index 33432019a023..bed7623b9c47 100644
--- a/secure/lib/libcrypto/Version.map
+++ b/secure/lib/libcrypto/Version.map
@@ -4450,7 +4450,22 @@ OPENSSL_1_1_1d {
     global:
         X509_get0_authority_issuer;
         X509_get0_authority_serial;
-    local: *;
 } OPENSSL_1_1_1c;
 
+OPENSSL_1_1_1e {
+    global:
+        EVP_PKEY_meth_get_digestsign;
+        EVP_PKEY_meth_get_digestverify;
+        EVP_PKEY_meth_set_digestsign;
+        EVP_PKEY_meth_set_digestverify;
+        RSA_get0_pss_params;
+} OPENSSL_1_1_1d;
 
+OPENSSL_1_1_1h {
+    global:
+        EC_KEY_decoded_from_explicit_params;
+        X509_ALGOR_copy;
+        X509_REQ_set0_signature;
+        X509_REQ_set1_signature_algo;
+    local: *;
+} OPENSSL_1_1_1e;
diff --git a/secure/lib/libssl/Version.map b/secure/lib/libssl/Version.map
index 8c5eba6795ec..3e4e00950def 100644
--- a/secure/lib/libssl/Version.map
+++ b/secure/lib/libssl/Version.map
@@ -512,7 +512,6 @@ OPENSSL_1_1_1 {
 OPENSSL_1_1_1a {
     global:
         SSL_get_signature_type_nid;
-    local: *;
 } OPENSSL_1_1_1;
 
 OPENSSL_1_1_1e {



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202106092219.159MJiiS023744>