diff options
Diffstat (limited to 'cipher/sha512.c')
-rw-r--r-- | cipher/sha512.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cipher/sha512.c b/cipher/sha512.c index 9cab33d6..57a74664 100644 --- a/cipher/sha512.c +++ b/cipher/sha512.c @@ -1191,6 +1191,8 @@ static const gcry_md_oid_spec_t oid_spec_sha512[] = /* PKCS#1 sha512WithRSAEncryption */ { "1.2.840.113549.1.1.13" }, + /* ANSI X9.62 ecdsaWithSHA512 */ + { "1.2.840.10045.4.3.4" }, { NULL } }; @@ -1222,6 +1224,9 @@ static const gcry_md_oid_spec_t oid_spec_sha384[] = /* SHA384WithECDSA: RFC 7427 (A.3.3.) */ { "1.2.840.10045.4.3.3" }, + /* ANSI X9.62 ecdsaWithSHA384 */ + { "1.2.840.10045.4.3.3" }, + { NULL }, }; |