diff options
author | Richard Levitte <levitte@openssl.org> | 2015-12-20 17:07:22 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2016-01-12 13:58:29 +0100 |
commit | 512fdfdf7f005cdf1ff96bb0682f853be5dabe05 (patch) | |
tree | 92b7c3e87d47bf0456a3932d6b07e47aa60a3cb7 /crypto/cmac/cmac.c | |
parent | make update (diff) | |
download | openssl-512fdfdf7f005cdf1ff96bb0682f853be5dabe05.tar.xz openssl-512fdfdf7f005cdf1ff96bb0682f853be5dabe05.zip |
Remove unused internal macros
The M_EVP_* macros related to EVP_CIPHER / EVP_CIPHER_CTX are not
public, and are unused.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/cmac/cmac.c')
-rw-r--r-- | crypto/cmac/cmac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/cmac/cmac.c b/crypto/cmac/cmac.c index 15634a7960..62658680e6 100644 --- a/crypto/cmac/cmac.c +++ b/crypto/cmac/cmac.c @@ -264,5 +264,5 @@ int CMAC_resume(CMAC_CTX *ctx) * decrypted block will allow CMAC to continue after calling * CMAC_Final(). */ - return M_EVP_EncryptInit_ex(ctx->cctx, NULL, NULL, NULL, ctx->tbl); + return EVP_EncryptInit_ex(ctx->cctx, NULL, NULL, NULL, ctx->tbl); } |