diff options
author | Richard Levitte <levitte@openssl.org> | 2018-10-24 21:20:00 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2018-10-30 05:49:54 +0100 |
commit | 6723f86746ab7e8ff9a914603db4f85c53eafc7c (patch) | |
tree | 55d8bd25665c11ea596d0fa7d4dd913ecc8f330b /crypto/include | |
parent | Make sure at least one CMAC test still uses the EVP_PKEY method (diff) | |
download | openssl-6723f86746ab7e8ff9a914603db4f85c53eafc7c.tar.xz openssl-6723f86746ab7e8ff9a914603db4f85c53eafc7c.zip |
EVP_MAC: Add HMAC implementation
Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/7483)
Diffstat (limited to 'crypto/include')
-rw-r--r-- | crypto/include/internal/evp_int.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/include/internal/evp_int.h b/crypto/include/internal/evp_int.h index 8bbc23b8a5..e84205c3b8 100644 --- a/crypto/include/internal/evp_int.h +++ b/crypto/include/internal/evp_int.h @@ -129,6 +129,7 @@ struct evp_mac_st { }; extern const EVP_MAC cmac_meth; +extern const EVP_MAC hmac_meth; /* * This function is internal for now, but can be made external when needed. |