summaryrefslogtreecommitdiffstats
path: root/crypto/pkcs12/p12_crt.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>1999-05-18 20:12:54 +0000
committerDr. Stephen Henson <steve@openssl.org>1999-05-18 20:12:54 +0000
commit35f7324c237b9b5ee46a04b88a6020173d3c66b1 (patch)
tree0434315934800a9cf9e97bf2704f038003a4d4a8 /crypto/pkcs12/p12_crt.c
parentb0759f87120e723d5e9a10ecd7e039bf3a441c29 (diff)
Change default PKCS#12 iteration count to 2048, include rsa_oeap_test in the
test batch file.
Diffstat (limited to 'crypto/pkcs12/p12_crt.c')
-rw-r--r--crypto/pkcs12/p12_crt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/pkcs12/p12_crt.c b/crypto/pkcs12/p12_crt.c
index cf630765bd..96cecc6efc 100644
--- a/crypto/pkcs12/p12_crt.c
+++ b/crypto/pkcs12/p12_crt.c
@@ -77,7 +77,7 @@ PKCS12 *PKCS12_create(char *pass, char *name, EVP_PKEY *pkey, X509 *cert,
/* Set defaults */
if(!nid_cert) nid_cert = NID_pbe_WithSHA1And40BitRC2_CBC;
if(!nid_key) nid_key = NID_pbe_WithSHA1And3_Key_TripleDES_CBC;
- if(!iter) iter = 1000;
+ if(!iter) iter = 2048;
if(!mac_iter) mac_iter = 1;
if(!pkey || !cert) {