summaryrefslogtreecommitdiffstats
path: root/crypto/evp/kem.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/evp/kem.c')
-rw-r--r--crypto/evp/kem.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/crypto/evp/kem.c b/crypto/evp/kem.c
index d5bdc6290a..6ba598eb98 100644
--- a/crypto/evp/kem.c
+++ b/crypto/evp/kem.c
@@ -36,6 +36,11 @@ static int evp_kem_init(EVP_PKEY_CTX *ctx, int operation,
evp_pkey_ctx_free_old_ops(ctx);
ctx->operation = operation;
+ if (ctx->pkey == NULL) {
+ ERR_raise(ERR_LIB_EVP, EVP_R_NO_KEY_SET);
+ goto err;
+ }
+
/*
* Try to derive the supported kem from |ctx->keymgmt|.
*/