diff options
| author | tb <> | 2024-07-09 17:02:29 +0000 |
|---|---|---|
| committer | tb <> | 2024-07-09 17:02:29 +0000 |
| commit | 03464fb728517030f7dc3db7b482bff8f083c3a9 (patch) | |
| tree | 6b598c3551698012b6607b5dedab1e54f782ba6b /src | |
| parent | 1d84a990311bf29d2db2800169a3292e7809d4b5 (diff) | |
| download | openbsd-03464fb728517030f7dc3db7b482bff8f083c3a9.tar.gz openbsd-03464fb728517030f7dc3db7b482bff8f083c3a9.tar.bz2 openbsd-03464fb728517030f7dc3db7b482bff8f083c3a9.zip | |
Add tls1_prf_pkey_meth to pkey_methods
ok 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 a0a193da7a..1aa2fda280 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.40 2024/04/09 13:52:41 beck Exp $ */ | 1 | /* $OpenBSD: pmeth_lib.c,v 1.41 2024/07/09 17:02:29 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 | */ |
| @@ -80,6 +80,7 @@ extern const EVP_PKEY_METHOD hkdf_pkey_meth; | |||
| 80 | extern const EVP_PKEY_METHOD hmac_pkey_meth; | 80 | extern const EVP_PKEY_METHOD hmac_pkey_meth; |
| 81 | extern const EVP_PKEY_METHOD rsa_pkey_meth; | 81 | extern const EVP_PKEY_METHOD rsa_pkey_meth; |
| 82 | extern const EVP_PKEY_METHOD rsa_pss_pkey_meth; | 82 | extern const EVP_PKEY_METHOD rsa_pss_pkey_meth; |
| 83 | extern const EVP_PKEY_METHOD tls1_prf_pkey_meth; | ||
| 83 | extern const EVP_PKEY_METHOD x25519_pkey_meth; | 84 | extern const EVP_PKEY_METHOD x25519_pkey_meth; |
| 84 | 85 | ||
| 85 | static const EVP_PKEY_METHOD *pkey_methods[] = { | 86 | static const EVP_PKEY_METHOD *pkey_methods[] = { |
| @@ -92,6 +93,7 @@ static const EVP_PKEY_METHOD *pkey_methods[] = { | |||
| 92 | &hmac_pkey_meth, | 93 | &hmac_pkey_meth, |
| 93 | &rsa_pkey_meth, | 94 | &rsa_pkey_meth, |
| 94 | &rsa_pss_pkey_meth, | 95 | &rsa_pss_pkey_meth, |
| 96 | &tls1_prf_pkey_meth, | ||
| 95 | &x25519_pkey_meth, | 97 | &x25519_pkey_meth, |
| 96 | }; | 98 | }; |
| 97 | 99 | ||
