diff options
author | Pauli <paul.dale@oracle.com> | 2020-09-29 09:40:26 +0200 |
---|---|---|
committer | Pauli <paul.dale@oracle.com> | 2020-10-01 02:33:57 +0200 |
commit | 592dcfd3df129235fa94144e866812800e2941e8 (patch) | |
tree | 00f6fb59eec3e606e61504af94e992fbc2f086d7 /providers/implementations/ciphers/cipher_aes_cbc_hmac_sha.h | |
parent | prov: prefix aes-cbc-cts functions with ossl_ (diff) | |
download | openssl-592dcfd3df129235fa94144e866812800e2941e8.tar.xz openssl-592dcfd3df129235fa94144e866812800e2941e8.zip |
prov: prefix all exposed 'cipher' symbols with ossl_
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/13030)
Diffstat (limited to 'providers/implementations/ciphers/cipher_aes_cbc_hmac_sha.h')
-rw-r--r-- | providers/implementations/ciphers/cipher_aes_cbc_hmac_sha.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha.h b/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha.h index 75c450c350..6aaf3f06fb 100644 --- a/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha.h +++ b/providers/implementations/ciphers/cipher_aes_cbc_hmac_sha.h @@ -10,8 +10,8 @@ #include "prov/ciphercommon.h" #include "crypto/aes_platform.h" -int cipher_capable_aes_cbc_hmac_sha1(void); -int cipher_capable_aes_cbc_hmac_sha256(void); +int ossl_cipher_capable_aes_cbc_hmac_sha1(void); +int ossl_cipher_capable_aes_cbc_hmac_sha256(void); typedef struct prov_cipher_hw_aes_hmac_sha_ctx_st { PROV_CIPHER_HW base; /* must be first */ |