aboutsummaryrefslogtreecommitdiff
path: root/ssl
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2018-10-24 18:34:53 +0200
committerRichard Levitte <levitte@openssl.org>2018-10-29 13:35:19 +0100
commit0145dd324e8fcfd2c0dfe296c12586101f0cf3b9 (patch)
treec0e710f0d9996e094525037357fe23839dcee6c4 /ssl
parent567db2c17d4ea8a0164d7abd8aed65b7a634bb40 (diff)
downloadopenssl-0145dd324e8fcfd2c0dfe296c12586101f0cf3b9.zip
openssl-0145dd324e8fcfd2c0dfe296c12586101f0cf3b9.tar.gz
openssl-0145dd324e8fcfd2c0dfe296c12586101f0cf3b9.tar.bz2
Add automatic initializations support for EVP_MAC objects
Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/7393)
Diffstat (limited to 'ssl')
-rw-r--r--ssl/ssl_init.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ssl/ssl_init.c b/ssl/ssl_init.c
index c0ccb93..31dce9c 100644
--- a/ssl/ssl_init.c
+++ b/ssl/ssl_init.c
@@ -199,7 +199,8 @@ int OPENSSL_init_ssl(uint64_t opts, const OPENSSL_INIT_SETTINGS * settings)
| OPENSSL_INIT_LOAD_CONFIG
#endif
| OPENSSL_INIT_ADD_ALL_CIPHERS
- | OPENSSL_INIT_ADD_ALL_DIGESTS,
+ | OPENSSL_INIT_ADD_ALL_DIGESTS
+ | OPENSSL_INIT_ADD_ALL_MACS,
settings))
return 0;