diff options
author | Pauli <paul.dale@oracle.com> | 2018-11-04 23:09:41 +0100 |
---|---|---|
committer | Pauli <paul.dale@oracle.com> | 2018-11-04 23:09:41 +0100 |
commit | afc580b9b0af0072233e9282915424fd55c366d0 (patch) | |
tree | 182a1eaa1f9a96656c05df13aa006b75ad2cd9c6 /crypto/include | |
parent | Restore sensible "sess_accept" counter tracking (diff) | |
download | openssl-afc580b9b0af0072233e9282915424fd55c366d0.tar.xz openssl-afc580b9b0af0072233e9282915424fd55c366d0.zip |
GMAC implementation
Remove GMAC demo program because it has been superceded by the EVP MAC one
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/7548)
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 060538e737..98adf1fd2f 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 gmac_meth; extern const EVP_MAC hmac_meth; extern const EVP_MAC siphash_meth; |