diff options
-rw-r--r-- | src/lib/libcrypto/evp/pmeth_lib.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/lib/libcrypto/evp/pmeth_lib.c b/src/lib/libcrypto/evp/pmeth_lib.c index ea9b8fed0c..36bfe8d9fc 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.15 2019/10/29 07:52:17 jsing Exp $ */ | 1 | /* $OpenBSD: pmeth_lib.c,v 1.16 2019/11/01 15:08:57 jsing 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 | */ |
@@ -78,7 +78,8 @@ typedef int sk_cmp_fn_type(const char * const *a, const char * const *b); | |||
78 | DECLARE_STACK_OF(EVP_PKEY_METHOD) | 78 | DECLARE_STACK_OF(EVP_PKEY_METHOD) |
79 | STACK_OF(EVP_PKEY_METHOD) *app_pkey_methods = NULL; | 79 | STACK_OF(EVP_PKEY_METHOD) *app_pkey_methods = NULL; |
80 | 80 | ||
81 | extern const EVP_PKEY_METHOD rsa_pkey_meth, dh_pkey_meth, dsa_pkey_meth; | 81 | extern const EVP_PKEY_METHOD rsa_pkey_meth, rsa_pss_pkey_meth; |
82 | extern const EVP_PKEY_METHOD dh_pkey_meth, dsa_pkey_meth; | ||
82 | extern const EVP_PKEY_METHOD ec_pkey_meth, hmac_pkey_meth, cmac_pkey_meth; | 83 | extern const EVP_PKEY_METHOD ec_pkey_meth, hmac_pkey_meth, cmac_pkey_meth; |
83 | extern const EVP_PKEY_METHOD gostimit_pkey_meth, gostr01_pkey_meth; | 84 | extern const EVP_PKEY_METHOD gostimit_pkey_meth, gostr01_pkey_meth; |
84 | 85 | ||
@@ -101,6 +102,9 @@ static const EVP_PKEY_METHOD *standard_methods[] = { | |||
101 | #endif | 102 | #endif |
102 | &hmac_pkey_meth, | 103 | &hmac_pkey_meth, |
103 | &cmac_pkey_meth, | 104 | &cmac_pkey_meth, |
105 | #ifndef OPENSSL_NO_RSA | ||
106 | &rsa_pss_pkey_meth, | ||
107 | #endif | ||
104 | }; | 108 | }; |
105 | 109 | ||
106 | static int pmeth_cmp_BSEARCH_CMP_FN(const void *, const void *); | 110 | static int pmeth_cmp_BSEARCH_CMP_FN(const void *, const void *); |