aboutsummaryrefslogtreecommitdiff
path: root/openssl/engines/ccgost/gost2001_keyx.c
diff options
context:
space:
mode:
Diffstat (limited to 'openssl/engines/ccgost/gost2001_keyx.c')
-rw-r--r--openssl/engines/ccgost/gost2001_keyx.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/openssl/engines/ccgost/gost2001_keyx.c b/openssl/engines/ccgost/gost2001_keyx.c
index 00759bcab..c74810285 100644
--- a/openssl/engines/ccgost/gost2001_keyx.c
+++ b/openssl/engines/ccgost/gost2001_keyx.c
@@ -280,6 +280,10 @@ int pkey_GOST01cp_decrypt(EVP_PKEY_CTX *pctx, unsigned char *key, size_t * key_l
}
param = get_encryption_params(gkt->key_agreement_info->cipher);
+ if(!param){
+ goto err;
+ }
+
gost_init(&ctx,param->sblock);
OPENSSL_assert(gkt->key_agreement_info->eph_iv->length==8);
memcpy(wrappedKey,gkt->key_agreement_info->eph_iv->data,8);