diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2001-12-01 23:41:39 +0100 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2001-12-01 23:41:39 +0100 |
commit | 322de0c8c1ff3d595bc236b30d74cd91240a58f8 (patch) | |
tree | e77f3dd2a1cc14652591798aee1c4e50503e6ff3 /crypto/asn1/d2i_pr.c | |
parent | Support for QNX (wrat@jump.net (the wharf rat)). (diff) | |
download | openssl-322de0c8c1ff3d595bc236b30d74cd91240a58f8.tar.xz openssl-322de0c8c1ff3d595bc236b30d74cd91240a58f8.zip |
NO_DSA, NO_RSA patches.
Diffstat (limited to 'crypto/asn1/d2i_pr.c')
-rw-r--r-- | crypto/asn1/d2i_pr.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/crypto/asn1/d2i_pr.c b/crypto/asn1/d2i_pr.c index 3021b80f0d..2e7d96af90 100644 --- a/crypto/asn1/d2i_pr.c +++ b/crypto/asn1/d2i_pr.c @@ -62,8 +62,12 @@ #include <openssl/evp.h> #include <openssl/objects.h> #include <openssl/asn1.h> +#ifndef OPENSSL_NO_RSA #include <openssl/rsa.h> +#endif +#ifndef OPENSSL_NO_DSA #include <openssl/dsa.h> +#endif EVP_PKEY *d2i_PrivateKey(int type, EVP_PKEY **a, unsigned char **pp, long length) |