diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2024-07-09 17:02:30 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2024-07-09 17:02:30 +0000 |
commit | 9babaa06b03a6ad9d55a76ab4f9dd8db6c115980 (patch) | |
tree | 25b2df8b22dfe2940f72da8c6aa97c26f004e0a1 /lib/libcrypto | |
parent | 5a8fe23f4650d9564200834297cf60f0204bfa60 (diff) |
Add tls1_prf_pkey_meth to pkey_methods
ok jsing
Diffstat (limited to 'lib/libcrypto')
-rw-r--r-- | lib/libcrypto/evp/pmeth_lib.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libcrypto/evp/pmeth_lib.c b/lib/libcrypto/evp/pmeth_lib.c index a0a193da7a4..1aa2fda2806 100644 --- a/lib/libcrypto/evp/pmeth_lib.c +++ b/lib/libcrypto/evp/pmeth_lib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmeth_lib.c,v 1.40 2024/04/09 13:52:41 beck Exp $ */ +/* $OpenBSD: pmeth_lib.c,v 1.41 2024/07/09 17:02:29 tb Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 2006. */ @@ -80,6 +80,7 @@ extern const EVP_PKEY_METHOD hkdf_pkey_meth; extern const EVP_PKEY_METHOD hmac_pkey_meth; extern const EVP_PKEY_METHOD rsa_pkey_meth; extern const EVP_PKEY_METHOD rsa_pss_pkey_meth; +extern const EVP_PKEY_METHOD tls1_prf_pkey_meth; extern const EVP_PKEY_METHOD x25519_pkey_meth; static const EVP_PKEY_METHOD *pkey_methods[] = { @@ -92,6 +93,7 @@ static const EVP_PKEY_METHOD *pkey_methods[] = { &hmac_pkey_meth, &rsa_pkey_meth, &rsa_pss_pkey_meth, + &tls1_prf_pkey_meth, &x25519_pkey_meth, }; |