aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/pem
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2009-01-15 12:52:38 +0000
committerDr. Stephen Henson <steve@openssl.org>2009-01-15 12:52:38 +0000
commit8125d9f99ceb3fcd81fdd191e85a73b27063383a (patch)
tree5fb9c3bab07088f694a13e1bea2ce0bb53fbf21b /crypto/pem
parent8e6925b0cd0ece649fe6b83268528cf8c17adf41 (diff)
downloadopenssl-8125d9f99ceb3fcd81fdd191e85a73b27063383a.tar.gz
Make PKCS#8 the standard write format for private keys, replacing the
ancient SSLeay format.
Diffstat (limited to 'crypto/pem')
-rw-r--r--crypto/pem/pem_pkey.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/pem/pem_pkey.c b/crypto/pem/pem_pkey.c
index cb208a7518..8ecf24903b 100644
--- a/crypto/pem/pem_pkey.c
+++ b/crypto/pem/pem_pkey.c
@@ -142,7 +142,7 @@ int PEM_write_bio_PrivateKey(BIO *bp, EVP_PKEY *x, const EVP_CIPHER *enc,
pem_password_cb *cb, void *u)
{
char pem_str[80];
- if (!x->ameth || !x->ameth->old_priv_encode)
+ if (!x->ameth || x->ameth->priv_encode)
return PEM_write_bio_PKCS8PrivateKey(bp, x, enc,
(char *)kstr, klen,
cb, u);