summaryrefslogtreecommitdiffstats
path: root/crypto/evp/pmeth_lib.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2006-04-12 23:51:24 +0000
committerDr. Stephen Henson <steve@openssl.org>2006-04-12 23:51:24 +0000
commit3ba0885a3e0d52c6bef91ce9bea26cd3eabd3594 (patch)
tree7ed7dcd305e4e21fb1236703f130fac9d9e0581a /crypto/evp/pmeth_lib.c
parent023c9d8dd5fee8dfe1ccc4aea71050f4c7ca6680 (diff)
Extend DH ASN1 method, add DH EVP_PKEY_METHOD.
Diffstat (limited to 'crypto/evp/pmeth_lib.c')
-rw-r--r--crypto/evp/pmeth_lib.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/evp/pmeth_lib.c b/crypto/evp/pmeth_lib.c
index dc4f96d735..d54dd4e966 100644
--- a/crypto/evp/pmeth_lib.c
+++ b/crypto/evp/pmeth_lib.c
@@ -66,11 +66,12 @@
STACK *app_pkey_methods = NULL;
-extern EVP_PKEY_METHOD rsa_pkey_meth, dsa_pkey_meth;
+extern EVP_PKEY_METHOD rsa_pkey_meth, dh_pkey_meth, dsa_pkey_meth;
static const EVP_PKEY_METHOD *standard_methods[] =
{
&rsa_pkey_meth,
+ &dh_pkey_meth,
&dsa_pkey_meth
};