diff options
Diffstat (limited to 'src/lib/libcrypto/dsa')
-rw-r--r-- | src/lib/libcrypto/dsa/dsa.h | 2 | ||||
-rw-r--r-- | src/lib/libcrypto/dsa/dsa_prn.c | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/src/lib/libcrypto/dsa/dsa.h b/src/lib/libcrypto/dsa/dsa.h index c871499201..48f7f8196e 100644 --- a/src/lib/libcrypto/dsa/dsa.h +++ b/src/lib/libcrypto/dsa/dsa.h | |||
@@ -247,10 +247,8 @@ int i2d_DSAparams(const DSA *a,unsigned char **pp); | |||
247 | int DSAparams_print(BIO *bp, const DSA *x); | 247 | int DSAparams_print(BIO *bp, const DSA *x); |
248 | int DSA_print(BIO *bp, const DSA *x, int off); | 248 | int DSA_print(BIO *bp, const DSA *x, int off); |
249 | #endif | 249 | #endif |
250 | #ifndef OPENSSL_NO_FP_API | ||
251 | int DSAparams_print_fp(FILE *fp, const DSA *x); | 250 | int DSAparams_print_fp(FILE *fp, const DSA *x); |
252 | int DSA_print_fp(FILE *bp, const DSA *x, int off); | 251 | int DSA_print_fp(FILE *bp, const DSA *x, int off); |
253 | #endif | ||
254 | 252 | ||
255 | #define DSS_prime_checks 50 | 253 | #define DSS_prime_checks 50 |
256 | /* Primality test according to FIPS PUB 186[-1], Appendix 2.1: | 254 | /* Primality test according to FIPS PUB 186[-1], Appendix 2.1: |
diff --git a/src/lib/libcrypto/dsa/dsa_prn.c b/src/lib/libcrypto/dsa/dsa_prn.c index 6f29f5e240..638f541975 100644 --- a/src/lib/libcrypto/dsa/dsa_prn.c +++ b/src/lib/libcrypto/dsa/dsa_prn.c | |||
@@ -61,7 +61,6 @@ | |||
61 | #include <openssl/evp.h> | 61 | #include <openssl/evp.h> |
62 | #include <openssl/dsa.h> | 62 | #include <openssl/dsa.h> |
63 | 63 | ||
64 | #ifndef OPENSSL_NO_FP_API | ||
65 | int DSA_print_fp(FILE *fp, const DSA *x, int off) | 64 | int DSA_print_fp(FILE *fp, const DSA *x, int off) |
66 | { | 65 | { |
67 | BIO *b; | 66 | BIO *b; |
@@ -93,7 +92,6 @@ int DSAparams_print_fp(FILE *fp, const DSA *x) | |||
93 | BIO_free(b); | 92 | BIO_free(b); |
94 | return(ret); | 93 | return(ret); |
95 | } | 94 | } |
96 | #endif | ||
97 | 95 | ||
98 | int DSA_print(BIO *bp, const DSA *x, int off) | 96 | int DSA_print(BIO *bp, const DSA *x, int off) |
99 | { | 97 | { |