From b4a3aeebd9f9280aa7e69a343f5c824e68466d90 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Fri, 18 Mar 2016 13:49:25 +0000 Subject: Fix no-cmac There were a couple of CMAC references without OPENSSL_NO_CMAC guards. Reviewed-by: Rich Salz --- crypto/evp/pmeth_lib.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'crypto/evp/pmeth_lib.c') diff --git a/crypto/evp/pmeth_lib.c b/crypto/evp/pmeth_lib.c index 26bec9a64b..a285009ad4 100644 --- a/crypto/evp/pmeth_lib.c +++ b/crypto/evp/pmeth_lib.c @@ -86,7 +86,9 @@ static const EVP_PKEY_METHOD *standard_methods[] = { &ec_pkey_meth, #endif &hmac_pkey_meth, +#ifndef OPENSSL_NO_CMAC &cmac_pkey_meth, +#endif #ifndef OPENSSL_NO_DH &dhx_pkey_meth, #endif -- cgit v1.2.3