summaryrefslogtreecommitdiffstats
path: root/crypto/asn1/ameth_lib.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2016-08-09 21:58:55 +0100
committerDr. Stephen Henson <steve@openssl.org>2016-08-13 14:11:04 +0100
commit262bd85fdead8808240f92eaea899615912001f7 (patch)
tree001fe76fec748b9e3325c3cc121c2c5bd561cf46 /crypto/asn1/ameth_lib.c
parent873feeb9cfd026b5cadc50ab026f4839ea9e3c08 (diff)
Add X25519 methods to internal tables
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/asn1/ameth_lib.c')
-rw-r--r--crypto/asn1/ameth_lib.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/crypto/asn1/ameth_lib.c b/crypto/asn1/ameth_lib.c
index 577e2050ed..d5a024776f 100644
--- a/crypto/asn1/ameth_lib.c
+++ b/crypto/asn1/ameth_lib.c
@@ -39,7 +39,10 @@ static const EVP_PKEY_ASN1_METHOD *standard_methods[] = {
&cmac_asn1_meth,
#endif
#ifndef OPENSSL_NO_DH
- &dhx_asn1_meth
+ &dhx_asn1_meth,
+#endif
+#ifndef OPENSSL_NO_EC
+ &ecx25519_asn1_meth
#endif
};