aboutsummaryrefslogtreecommitdiff
path: root/providers/implementations/exchange
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2021-01-28 08:01:52 +0100
committerRichard Levitte <levitte@openssl.org>2021-02-01 23:02:20 +0100
commit58f422f6f481ec7961fe762c97121b53abad3eb4 (patch)
tree719ddb4b44386d6157f9a8cf9a83be561b7fadcc /providers/implementations/exchange
parentb8a1272d57e144dfac97006477a68f9948ebb595 (diff)
downloadopenssl-58f422f6f481ec7961fe762c97121b53abad3eb4.zip
openssl-58f422f6f481ec7961fe762c97121b53abad3eb4.tar.gz
openssl-58f422f6f481ec7961fe762c97121b53abad3eb4.tar.bz2
Fix some odd names in our provider source code
ecossl_dh_keyexch_functions -> ossl_ecdh_keyexch_functions ecossl_dsa_signature_functions -> ossl_ecdsa_signature_functions sm2_asym_cipher_functions -> ossl_sm2_asym_cipher_functions sm2_keymgmt_functions -> ossl_sm2_keymgmt_functions sm2_signature_functions -> ossl_sm2_signature_functions Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/14028)
Diffstat (limited to 'providers/implementations/exchange')
-rw-r--r--providers/implementations/exchange/ecdh_exch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/providers/implementations/exchange/ecdh_exch.c b/providers/implementations/exchange/ecdh_exch.c
index d5f4859..a1b1744 100644
--- a/providers/implementations/exchange/ecdh_exch.c
+++ b/providers/implementations/exchange/ecdh_exch.c
@@ -530,7 +530,7 @@ int ecdh_derive(void *vpecdhctx, unsigned char *secret,
return 0;
}
-const OSSL_DISPATCH ecossl_dh_keyexch_functions[] = {
+const OSSL_DISPATCH ossl_ecdh_keyexch_functions[] = {
{ OSSL_FUNC_KEYEXCH_NEWCTX, (void (*)(void))ecdh_newctx },
{ OSSL_FUNC_KEYEXCH_INIT, (void (*)(void))ecdh_init },
{ OSSL_FUNC_KEYEXCH_DERIVE, (void (*)(void))ecdh_derive },