summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/ec/ec.h
diff options
context:
space:
mode:
authorbeck <>2014-05-29 20:21:23 +0000
committerbeck <>2014-05-29 20:21:23 +0000
commitd205a2aecb99564cccfbea61c39ebe3b0ddd7fb7 (patch)
tree0085ebdac711a18932d8d8d531d36f82fce2c8bc /src/lib/libcrypto/ec/ec.h
parent6f22007e67d4c2d77b9caea83bc05974d11dbb0d (diff)
downloadopenbsd-d205a2aecb99564cccfbea61c39ebe3b0ddd7fb7.tar.gz
openbsd-d205a2aecb99564cccfbea61c39ebe3b0ddd7fb7.tar.bz2
openbsd-d205a2aecb99564cccfbea61c39ebe3b0ddd7fb7.zip
Everything sane has stdio, and FILE *. we don't need ifdefs for this.
ok to firebomb from tedu@
Diffstat (limited to 'src/lib/libcrypto/ec/ec.h')
-rw-r--r--src/lib/libcrypto/ec/ec.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/lib/libcrypto/ec/ec.h b/src/lib/libcrypto/ec/ec.h
index 86f8c6820d..1e0b929304 100644
--- a/src/lib/libcrypto/ec/ec.h
+++ b/src/lib/libcrypto/ec/ec.h
@@ -695,9 +695,7 @@ int i2d_ECPKParameters(const EC_GROUP *, unsigned char **out);
695#ifndef OPENSSL_NO_BIO 695#ifndef OPENSSL_NO_BIO
696int ECPKParameters_print(BIO *bp, const EC_GROUP *x, int off); 696int ECPKParameters_print(BIO *bp, const EC_GROUP *x, int off);
697#endif 697#endif
698#ifndef OPENSSL_NO_FP_API
699int ECPKParameters_print_fp(FILE *fp, const EC_GROUP *x, int off); 698int ECPKParameters_print_fp(FILE *fp, const EC_GROUP *x, int off);
700#endif
701 699
702 700
703/********************************************************************/ 701/********************************************************************/
@@ -930,7 +928,6 @@ int ECParameters_print(BIO *bp, const EC_KEY *key);
930int EC_KEY_print(BIO *bp, const EC_KEY *key, int off); 928int EC_KEY_print(BIO *bp, const EC_KEY *key, int off);
931 929
932#endif 930#endif
933#ifndef OPENSSL_NO_FP_API
934/** Prints out the ec parameters on human readable form. 931/** Prints out the ec parameters on human readable form.
935 * \param fp file descriptor to which the information is printed 932 * \param fp file descriptor to which the information is printed
936 * \param key EC_KEY object 933 * \param key EC_KEY object
@@ -946,7 +943,6 @@ int ECParameters_print_fp(FILE *fp, const EC_KEY *key);
946 */ 943 */
947int EC_KEY_print_fp(FILE *fp, const EC_KEY *key, int off); 944int EC_KEY_print_fp(FILE *fp, const EC_KEY *key, int off);
948 945
949#endif
950 946
951#define ECParameters_dup(x) ASN1_dup_of(EC_KEY,i2d_ECParameters,d2i_ECParameters,x) 947#define ECParameters_dup(x) ASN1_dup_of(EC_KEY,i2d_ECParameters,d2i_ECParameters,x)
952 948