diff options
author | tb <> | 2022-05-05 08:51:21 +0000 |
---|---|---|
committer | tb <> | 2022-05-05 08:51:21 +0000 |
commit | 35656f0007add79ff6e85e878a6119f645edef25 (patch) | |
tree | 3e43af486e6f08e2f6f3db80229d2778c3f62a8a | |
parent | b8d8a76afcd969dbc47666154c88276dbc5aa2c5 (diff) | |
download | openbsd-35656f0007add79ff6e85e878a6119f645edef25.tar.gz openbsd-35656f0007add79ff6e85e878a6119f645edef25.tar.bz2 openbsd-35656f0007add79ff6e85e878a6119f645edef25.zip |
Add hkdf_pkey_meth to the standard_methods[]
ok beck jsing
Diffstat (limited to '')
-rw-r--r-- | src/lib/libcrypto/evp/pmeth_lib.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libcrypto/evp/pmeth_lib.c b/src/lib/libcrypto/evp/pmeth_lib.c index ef28ba09d8..960244926d 100644 --- a/src/lib/libcrypto/evp/pmeth_lib.c +++ b/src/lib/libcrypto/evp/pmeth_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: pmeth_lib.c,v 1.21 2022/05/05 08:42:27 tb Exp $ */ | 1 | /* $OpenBSD: pmeth_lib.c,v 1.22 2022/05/05 08:51:21 tb Exp $ */ |
2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
3 | * project 2006. | 3 | * project 2006. |
4 | */ | 4 | */ |
@@ -84,6 +84,7 @@ extern const EVP_PKEY_METHOD rsa_pkey_meth, rsa_pss_pkey_meth; | |||
84 | extern const EVP_PKEY_METHOD dh_pkey_meth, dsa_pkey_meth; | 84 | extern const EVP_PKEY_METHOD dh_pkey_meth, dsa_pkey_meth; |
85 | extern const EVP_PKEY_METHOD ec_pkey_meth, hmac_pkey_meth, cmac_pkey_meth; | 85 | extern const EVP_PKEY_METHOD ec_pkey_meth, hmac_pkey_meth, cmac_pkey_meth; |
86 | extern const EVP_PKEY_METHOD gostimit_pkey_meth, gostr01_pkey_meth; | 86 | extern const EVP_PKEY_METHOD gostimit_pkey_meth, gostr01_pkey_meth; |
87 | extern const EVP_PKEY_METHOD hkdf_pkey_meth; | ||
87 | 88 | ||
88 | static const EVP_PKEY_METHOD *standard_methods[] = { | 89 | static const EVP_PKEY_METHOD *standard_methods[] = { |
89 | #ifndef OPENSSL_NO_RSA | 90 | #ifndef OPENSSL_NO_RSA |
@@ -107,6 +108,7 @@ static const EVP_PKEY_METHOD *standard_methods[] = { | |||
107 | #ifndef OPENSSL_NO_RSA | 108 | #ifndef OPENSSL_NO_RSA |
108 | &rsa_pss_pkey_meth, | 109 | &rsa_pss_pkey_meth, |
109 | #endif | 110 | #endif |
111 | &hkdf_pkey_meth, | ||
110 | }; | 112 | }; |
111 | 113 | ||
112 | static int pmeth_cmp_BSEARCH_CMP_FN(const void *, const void *); | 114 | static int pmeth_cmp_BSEARCH_CMP_FN(const void *, const void *); |