diff options
author | Rich Salz <rsalz@openssl.org> | 2015-01-14 21:57:28 +0100 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2015-01-14 21:57:28 +0100 |
commit | 4b618848f9beb8271f24883694e097caa70013c0 (patch) | |
tree | 83a17961f721935b211a19bddf8ea02ab5760fb4 /crypto/rsa | |
parent | Add Broadwell performance results. (diff) | |
download | openssl-4b618848f9beb8271f24883694e097caa70013c0.tar.xz openssl-4b618848f9beb8271f24883694e097caa70013c0.zip |
Cleanup OPENSSL_NO_xxx, part 1master-pre-reformat
OPENSSL_NO_RIPEMD160, OPENSSL_NO_RIPEMD merged into OPENSSL_NO_RMD160
OPENSSL_NO_FP_API merged into OPENSSL_NO_STDIO
Two typo's on #endif comments fixed:
OPENSSL_NO_ECB fixed to OPENSSL_NO_OCB
OPENSSL_NO_HW_SureWare fixed to OPENSSL_NO_HW_SUREWARE
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/rsa')
-rw-r--r-- | crypto/rsa/rsa.h | 2 | ||||
-rw-r--r-- | crypto/rsa/rsa_prn.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/crypto/rsa/rsa.h b/crypto/rsa/rsa.h index 10e187e263..669b601ca8 100644 --- a/crypto/rsa/rsa.h +++ b/crypto/rsa/rsa.h @@ -376,7 +376,7 @@ typedef struct rsa_oaep_params_st DECLARE_ASN1_FUNCTIONS(RSA_OAEP_PARAMS) -#ifndef OPENSSL_NO_FP_API +#ifndef OPENSSL_NO_STDIO int RSA_print_fp(FILE *fp, const RSA *r,int offset); #endif diff --git a/crypto/rsa/rsa_prn.c b/crypto/rsa/rsa_prn.c index 224db0fae5..9974224d9f 100644 --- a/crypto/rsa/rsa_prn.c +++ b/crypto/rsa/rsa_prn.c @@ -61,7 +61,7 @@ #include <openssl/rsa.h> #include <openssl/evp.h> -#ifndef OPENSSL_NO_FP_API +#ifndef OPENSSL_NO_STDIO int RSA_print_fp(FILE *fp, const RSA *x, int off) { BIO *b; |