diff options
Diffstat (limited to 'src/lib/libcrypto/asn1/i2d_pr.c')
-rw-r--r-- | src/lib/libcrypto/asn1/i2d_pr.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/lib/libcrypto/asn1/i2d_pr.c b/src/lib/libcrypto/asn1/i2d_pr.c index b6b821d73c..71d6910204 100644 --- a/src/lib/libcrypto/asn1/i2d_pr.c +++ b/src/lib/libcrypto/asn1/i2d_pr.c | |||
@@ -58,13 +58,11 @@ | |||
58 | 58 | ||
59 | #include <stdio.h> | 59 | #include <stdio.h> |
60 | #include "cryptlib.h" | 60 | #include "cryptlib.h" |
61 | #include "bn.h" | 61 | #include <openssl/bn.h> |
62 | #include "evp.h" | 62 | #include <openssl/evp.h> |
63 | #include "objects.h" | 63 | #include <openssl/objects.h> |
64 | 64 | ||
65 | int i2d_PrivateKey(a,pp) | 65 | int i2d_PrivateKey(EVP_PKEY *a, unsigned char **pp) |
66 | EVP_PKEY *a; | ||
67 | unsigned char **pp; | ||
68 | { | 66 | { |
69 | #ifndef NO_RSA | 67 | #ifndef NO_RSA |
70 | if (a->type == EVP_PKEY_RSA) | 68 | if (a->type == EVP_PKEY_RSA) |