diff options
| author | tb <> | 2022-05-05 08:51:21 +0000 |
|---|---|---|
| committer | tb <> | 2022-05-05 08:51:21 +0000 |
| commit | 3de3810f0418ca1ff69ac8dccf0bf1b97972e7cf (patch) | |
| tree | 3e43af486e6f08e2f6f3db80229d2778c3f62a8a /src | |
| parent | 61f87d6bab02ca142d42109ef2f1128a3a67831d (diff) | |
| download | openbsd-3de3810f0418ca1ff69ac8dccf0bf1b97972e7cf.tar.gz openbsd-3de3810f0418ca1ff69ac8dccf0bf1b97972e7cf.tar.bz2 openbsd-3de3810f0418ca1ff69ac8dccf0bf1b97972e7cf.zip | |
Add hkdf_pkey_meth to the standard_methods[]
ok beck jsing
Diffstat (limited to 'src')
| -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 *); |
