diff options
author | Pauli <paul.dale@oracle.com> | 2020-09-28 12:47:04 +1000 |
---|---|---|
committer | Pauli <paul.dale@oracle.com> | 2020-09-29 16:33:16 +1000 |
commit | 7d6766cb537e5cebc99e200bc537f744878a87a4 (patch) | |
tree | db9fbd45925e6735deb25b4b1a44771a107c003e /providers/implementations/ciphers/cipher_aria_gcm_hw.c | |
parent | 1be63951f87dfcbc98efe5d94a15298fea885890 (diff) | |
download | openssl-new-7d6766cb537e5cebc99e200bc537f744878a87a4.tar.gz |
prov: prefix provider internal functions with ossl_
Also convert the names to lower case.
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/13014)
Diffstat (limited to 'providers/implementations/ciphers/cipher_aria_gcm_hw.c')
-rw-r--r-- | providers/implementations/ciphers/cipher_aria_gcm_hw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/providers/implementations/ciphers/cipher_aria_gcm_hw.c b/providers/implementations/ciphers/cipher_aria_gcm_hw.c index 1d8e470b20..54c635e4bf 100644 --- a/providers/implementations/ciphers/cipher_aria_gcm_hw.c +++ b/providers/implementations/ciphers/cipher_aria_gcm_hw.c @@ -31,7 +31,7 @@ static const PROV_GCM_HW aria_gcm = { gcm_cipher_final, gcm_one_shot }; -const PROV_GCM_HW *PROV_ARIA_HW_gcm(size_t keybits) +const PROV_GCM_HW *ossl_prov_aria_hw_gcm(size_t keybits) { return &aria_gcm; } |