summaryrefslogtreecommitdiffstats
path: root/crypto/crmf
diff options
context:
space:
mode:
authorPeiwei Hu <jlu.hpw@foxmail.com>2022-12-02 16:33:02 +0800
committerTomas Mraz <tomas@openssl.org>2022-12-05 13:05:43 +0100
commitbdb66dd4c560561d2b56d03954c6c8836102271c (patch)
treeded2f9cf7ba55850a7db414f08381421406e5d01 /crypto/crmf
parent6a858e9f5967ae28dcdf7d4dcf52327f173d9517 (diff)
Fix the check of EVP_PKEY_decrypt_init
Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19819) (cherry picked from commit b794476df71441a6d30740ab9fadcc0f6d18d3d6)
Diffstat (limited to 'crypto/crmf')
-rw-r--r--crypto/crmf/crmf_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/crmf/crmf_lib.c b/crypto/crmf/crmf_lib.c
index 8b42e4392e..3607fb0bf4 100644
--- a/crypto/crmf/crmf_lib.c
+++ b/crypto/crmf/crmf_lib.c
@@ -648,7 +648,7 @@ X509
cikeysize = EVP_CIPHER_get_key_length(cipher);
/* first the symmetric key needs to be decrypted */
pkctx = EVP_PKEY_CTX_new_from_pkey(libctx, pkey, propq);
- if (pkctx != NULL && EVP_PKEY_decrypt_init(pkctx)) {
+ if (pkctx != NULL && EVP_PKEY_decrypt_init(pkctx) > 0) {
ASN1_BIT_STRING *encKey = ecert->encSymmKey;
size_t failure;
int retval;