diff options
author | Richard Levitte <levitte@openssl.org> | 2020-03-18 15:54:47 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2020-04-08 15:30:25 +0200 |
commit | c2041da8c15027ddde5afcf9809d8d3a975eb25b (patch) | |
tree | bf9d645794fd9bdb554d7e09d4af0a04180905f5 /util | |
parent | EVP: add EVP_PKEY_is_a() and EVP_PKEY_can_sign() (diff) | |
download | openssl-c2041da8c15027ddde5afcf9809d8d3a975eb25b.tar.xz openssl-c2041da8c15027ddde5afcf9809d8d3a975eb25b.zip |
EVP & TLS: Add necessary EC_KEY data extraction functions, and use them
libssl code uses EVP_PKEY_get0_EC_KEY() to extract certain basic data
from the EC_KEY. We replace that with internal EVP_PKEY functions.
This may or may not be refactored later on.
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/11358)
Diffstat (limited to 'util')
-rw-r--r-- | util/libcrypto.num | 1 | ||||
-rw-r--r-- | util/missingcrypto.txt | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/util/libcrypto.num b/util/libcrypto.num index e29234aaf9..73d70efe99 100644 --- a/util/libcrypto.num +++ b/util/libcrypto.num @@ -5039,3 +5039,4 @@ EVP_PKEY_get_utf8_string_param ? 3_0_0 EXIST::FUNCTION: EVP_PKEY_get_octet_string_param ? 3_0_0 EXIST::FUNCTION: EVP_PKEY_is_a ? 3_0_0 EXIST::FUNCTION: EVP_PKEY_can_sign ? 3_0_0 EXIST::FUNCTION: +evp_pkey_get_EC_KEY_curve_nid ? 3_0_0 EXIST::FUNCTION:EC diff --git a/util/missingcrypto.txt b/util/missingcrypto.txt index d6d30912f3..a53909f4d2 100644 --- a/util/missingcrypto.txt +++ b/util/missingcrypto.txt @@ -1558,6 +1558,8 @@ conf_ssl_name_find(3) d2i_X509_bio(3) d2i_X509_fp(3) err_free_strings_int(3) +# The following is internal but exported by libcrypto +evp_pkey_get_EC_KEY_curve_nid(3) i2a_ACCESS_DESCRIPTION(3) i2a_ASN1_ENUMERATED(3) i2a_ASN1_INTEGER(3) |