aboutsummaryrefslogtreecommitdiff
path: root/crypto/asn1/standard_methods.h
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2018-02-28 14:59:44 +0000
committerMatt Caswell <matt@openssl.org>2018-03-02 10:14:31 +0000
commit13735cfef69dfac2d36229810ea0400e2bc6526d (patch)
tree1f4b01e1f1eeb5a1876141515fc82ec043ca9042 /crypto/asn1/standard_methods.h
parentf7869f1be610aaec85f25351a50b52e8130a2421 (diff)
downloadopenssl-13735cfef69dfac2d36229810ea0400e2bc6526d.zip
openssl-13735cfef69dfac2d36229810ea0400e2bc6526d.tar.gz
openssl-13735cfef69dfac2d36229810ea0400e2bc6526d.tar.bz2
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.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/asn1/standard_methods.h b/crypto/asn1/standard_methods.h
index d366aa0..7d1f97e 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
};