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)
Feb 6 2024, 2:16 PM
Unknown Object (File)
Jan 10 2024, 9:52 PM
Unknown Object (File)
Dec 31 2023, 8:32 AM
Unknown Object (File)
Dec 12 2023, 3:43 AM
Unknown Object (File)
Nov 22 2023, 5:48 PM
Unknown Object (File)
Nov 22 2023, 5:26 PM
Unknown Object (File)
Nov 22 2023, 12:44 AM
Unknown Object (File)
Nov 16 2023, 10:11 AM
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