diff options
author | Matt Caswell <matt@openssl.org> | 2018-02-28 15:59:44 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2018-03-02 11:14:31 +0100 |
commit | 13735cfef69dfac2d36229810ea0400e2bc6526d (patch) | |
tree | 1f4b01e1f1eeb5a1876141515fc82ec043ca9042 /crypto/asn1/standard_methods.h | |
parent | Add pkey types for curve448 (diff) | |
download | openssl-13735cfef69dfac2d36229810ea0400e2bc6526d.tar.xz openssl-13735cfef69dfac2d36229810ea0400e2bc6526d.zip |
Integrate X448 and Ed448 into libcrypto
This adds all of the relevant EVP plumbing required to make
X448 and Ed448 work.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Kurt Roeckx <kurt@roeckx.be>
(Merged from https://github.com/openssl/openssl/pull/5481)
Diffstat (limited to 'crypto/asn1/standard_methods.h')
-rw-r--r-- | crypto/asn1/standard_methods.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/asn1/standard_methods.h b/crypto/asn1/standard_methods.h index d366aa090a..7d1f97e360 100644 --- a/crypto/asn1/standard_methods.h +++ b/crypto/asn1/standard_methods.h @@ -42,6 +42,7 @@ static const EVP_PKEY_ASN1_METHOD *standard_methods[] = { #endif #ifndef OPENSSL_NO_EC &ecx25519_asn1_meth, + &ecx448_asn1_meth, #endif #ifndef OPENSSL_NO_POLY1305 &poly1305_asn1_meth, @@ -51,6 +52,7 @@ static const EVP_PKEY_ASN1_METHOD *standard_methods[] = { #endif #ifndef OPENSSL_NO_EC &ed25519_asn1_meth, + &ed448_asn1_meth, #endif }; |