diff options
author | Dr. Stephen Henson <steve@openssl.org> | 1999-06-10 19:32:52 +0200 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 1999-06-10 19:32:52 +0200 |
commit | b7d135b353953bf40a58b49d145df5376a8af209 (patch) | |
tree | 13d52048866ecf20b4ab22366c467c0871a14ce1 /crypto/pkcs12/p12_crpt.c | |
parent | Avoid warnings. (diff) | |
download | openssl-b7d135b353953bf40a58b49d145df5376a8af209.tar.xz openssl-b7d135b353953bf40a58b49d145df5376a8af209.zip |
Two new functions to write out PKCS#8 private keys. Also fixes for some of
the the PBE code and a new constant PKCS5_DEFAULT_ITER for the default
iteration count if it is passed as zero.
Diffstat (limited to 'crypto/pkcs12/p12_crpt.c')
-rw-r--r-- | crypto/pkcs12/p12_crpt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/pkcs12/p12_crpt.c b/crypto/pkcs12/p12_crpt.c index d94265403a..6de6f8128f 100644 --- a/crypto/pkcs12/p12_crpt.c +++ b/crypto/pkcs12/p12_crpt.c @@ -92,7 +92,7 @@ int PKCS12_PBE_keyivgen (EVP_CIPHER_CTX *ctx, const char *pass, int passlen, /* Extract useful info from parameter */ pbuf = param->value.sequence->data; - if (!param || (param->type = V_ASN1_SEQUENCE) || + if (!param || (param->type != V_ASN1_SEQUENCE) || !(pbe = d2i_PBEPARAM (NULL, &pbuf, param->value.sequence->length))) { EVPerr(PKCS12_F_PKCS12_PBE_KEYIVGEN,EVP_R_DECODE_ERROR); return 0; |