]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - crypto/evp/c_allm.c
KMAC implementation using EVP_MAC
[thirdparty/openssl.git] / crypto / evp / c_allm.c
index 862b639a22fec002830a323bf6de05d41618b963..a1379d55243d302e0b38a24cc40ae46e058996ff 100644 (file)
@@ -14,5 +14,15 @@ void openssl_add_all_macs_int(void)
 {
 #ifndef OPENSSL_NO_CMAC
     EVP_add_mac(&cmac_meth);
+#endif
+    EVP_add_mac(&gmac_meth);
+    EVP_add_mac(&hmac_meth);
+    EVP_add_mac(&kmac128_meth);
+    EVP_add_mac(&kmac256_meth);
+#ifndef OPENSSL_NO_SIPHASH
+    EVP_add_mac(&siphash_meth);
+#endif
+#ifndef OPENSSL_NO_POLY1305
+    EVP_add_mac(&poly1305_meth);
 #endif
 }