Page MenuHomeFreeBSD

libcrypto: Add symbol versions for symbols added since 1.1.1d.
ClosedPublic

Authored by jhb on May 26 2021, 9:06 PM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Nov 26, 6:19 AM
Unknown Object (File)
Tue, Nov 25, 5:41 PM
Unknown Object (File)
Sun, Nov 23, 10:55 PM
Unknown Object (File)
Mon, Nov 10, 4:20 AM
Unknown Object (File)
Thu, Nov 6, 9:26 PM
Unknown Object (File)
Thu, Nov 6, 2:21 AM
Unknown Object (File)
Fri, Oct 31, 12:21 PM
Unknown Object (File)
Oct 29 2025, 2:16 PM
Subscribers

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

jhb requested review of this revision.May 26 2021, 9:06 PM
secure/lib/libcrypto/Version.map
4471

Please sort the symbols, i.e.,

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;
jkim requested changes to this revision.May 28 2021, 6:49 PM
This revision now requires changes to proceed.May 28 2021, 6:49 PM
jhb marked an inline comment as done.
  • Sort entries.

I also built the library before/after and compared readelf -s output and the only changes are the addition of versioned public symbols added in Version.map.

This revision is now accepted and ready to land.May 28 2021, 10:10 PM