Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/ssl
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2018-10-24 19:34:53 +0300
committerRichard Levitte <levitte@openssl.org>2018-10-29 15:35:19 +0300
commit0145dd324e8fcfd2c0dfe296c12586101f0cf3b9 (patch)
treec0e710f0d9996e094525037357fe23839dcee6c4 /ssl
parent567db2c17d4ea8a0164d7abd8aed65b7a634bb40 (diff)
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 c0ccb9304a..31dce9c79d 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;