evp/m_sha3.c: wire SHA3 to rsaEncryption.
authorAndy Polyakov <appro@openssl.org>
Sun, 10 Sep 2017 19:42:43 +0000 (21:42 +0200)
committerAndy Polyakov <appro@openssl.org>
Mon, 11 Sep 2017 20:18:18 +0000 (22:18 +0200)
Reviewed-by: Richard Levitte <levitte@openssl.org>
crypto/evp/m_sha3.c

index 9691d934e76e67c4a8157021213dedeae5890534..cf902e742c2d6fcf81a46d31404d5c2eca6971e0 100644 (file)
@@ -139,9 +139,9 @@ const EVP_MD *EVP_sha3_##bitlen(void)           \
 {                                               \
     static const EVP_MD sha3_##bitlen##_md = {  \
         NID_sha3_##bitlen,                      \
-        0,                                      \
+        NID_RSA_SHA3_##bitlen,                  \
         bitlen / 8,                             \
-        0,                                      \
+        EVP_MD_FLAG_DIGALGID_ABSENT,            \
         sha3_init,                              \
         sha3_update,                            \
         sha3_final,                             \