summaryrefslogtreecommitdiffstats
path: root/crypto/cmac
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2015-12-20 17:07:22 +0100
committerRichard Levitte <levitte@openssl.org>2016-01-12 13:58:29 +0100
commit512fdfdf7f005cdf1ff96bb0682f853be5dabe05 (patch)
tree92b7c3e87d47bf0456a3932d6b07e47aa60a3cb7 /crypto/cmac
parentff4b7fafb315df5f8374e9b50c302460e068f188 (diff)
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')
-rw-r--r--crypto/cmac/cmac.c2
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);
}