diff options
Diffstat (limited to 'providers/defltprov.c')
-rw-r--r-- | providers/defltprov.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/providers/defltprov.c b/providers/defltprov.c index 5b6d6a677e..f2fe98fc7f 100644 --- a/providers/defltprov.c +++ b/providers/defltprov.c @@ -339,7 +339,8 @@ static const OSSL_ALGORITHM deflt_keyexch[] = { { "X25519", "provider=default", x25519_keyexch_functions }, { "X448", "provider=default", x448_keyexch_functions }, #endif - { "TLS1-PRF", "provider=default", kdf_keyexch_functions }, + { "TLS1-PRF", "provider=default", kdf_tls1_prf_keyexch_functions }, + { "HKDF", "provider=default", kdf_hkdf_keyexch_functions }, { NULL, NULL, NULL } }; @@ -386,6 +387,7 @@ static const OSSL_ALGORITHM deflt_keymgmt[] = { { "ED448", "provider=default", ed448_keymgmt_functions }, #endif { "TLS1-PRF", "provider=default", kdf_keymgmt_functions }, + { "HKDF", "provider=default", kdf_keymgmt_functions }, { NULL, NULL, NULL } }; |