summaryrefslogtreecommitdiffstats
path: root/crypto/pem/pem.h
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2010-04-06 11:18:32 +0000
committerDr. Stephen Henson <steve@openssl.org>2010-04-06 11:18:32 +0000
commit5b0a79a27aaee29ead5ce2fb4cfb4918e32efe87 (patch)
tree01162917108342c26f96ccc7d51761a0254bcd44 /crypto/pem/pem.h
parent6747de655e215a936f0d5f14072ac8a3e63eea3b (diff)
PR: 2220
Fixes to make OpenSSL compile with no-rc4
Diffstat (limited to 'crypto/pem/pem.h')
-rw-r--r--crypto/pem/pem.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/pem/pem.h b/crypto/pem/pem.h
index 22231c26d3..8a6ababe3a 100644
--- a/crypto/pem/pem.h
+++ b/crypto/pem/pem.h
@@ -548,10 +548,11 @@ EVP_PKEY *b2i_PrivateKey_bio(BIO *in);
EVP_PKEY *b2i_PublicKey_bio(BIO *in);
int i2b_PrivateKey_bio(BIO *out, EVP_PKEY *pk);
int i2b_PublicKey_bio(BIO *out, EVP_PKEY *pk);
-
+#ifndef OPENSSL_NO_RC4
EVP_PKEY *b2i_PVK_bio(BIO *in, pem_password_cb *cb, void *u);
int i2b_PVK_bio(BIO *out, EVP_PKEY *pk, int enclevel,
pem_password_cb *cb, void *u);
+#endif
/* BEGIN ERROR CODES */