summaryrefslogtreecommitdiff
path: root/providers/implementations/ciphers/cipher_aes_xts.c
diff options
context:
space:
mode:
authorPauli <paul.dale@oracle.com>2020-09-28 12:47:04 +1000
committerPauli <paul.dale@oracle.com>2020-09-29 16:33:16 +1000
commit7d6766cb537e5cebc99e200bc537f744878a87a4 (patch)
treedb9fbd45925e6735deb25b4b1a44771a107c003e /providers/implementations/ciphers/cipher_aes_xts.c
parent1be63951f87dfcbc98efe5d94a15298fea885890 (diff)
downloadopenssl-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_aes_xts.c')
-rw-r--r--providers/implementations/ciphers/cipher_aes_xts.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/providers/implementations/ciphers/cipher_aes_xts.c b/providers/implementations/ciphers/cipher_aes_xts.c
index e28008b773..ca40bbde0e 100644
--- a/providers/implementations/ciphers/cipher_aes_xts.c
+++ b/providers/implementations/ciphers/cipher_aes_xts.c
@@ -116,7 +116,7 @@ static void *aes_xts_newctx(void *provctx, unsigned int mode, uint64_t flags,
if (ctx != NULL) {
cipher_generic_initkey(&ctx->base, kbits, blkbits, ivbits, mode, flags,
- PROV_CIPHER_HW_aes_xts(kbits), NULL);
+ ossl_prov_cipher_hw_aes_xts(kbits), NULL);
}
return ctx;
}