]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/evp/p_dec.c
Fix possible null pointer dereference of evp_pkey_get_legacy()
[thirdparty/openssl.git] / crypto / evp / p_dec.c
CommitLineData
62867571 1/*
8020d79b 2 * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
58964a49 3 *
4a8b0c55 4 * Licensed under the Apache License 2.0 (the "License"). You may not use
62867571
RS
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
58964a49
RE
8 */
9
d7e498ac
RL
10/* We need to use the deprecated RSA low level calls */
11#define OPENSSL_SUPPRESS_DEPRECATED
c5f87134 12
58964a49 13#include <stdio.h>
b39fc560 14#include "internal/cryptlib.h"
3c27208f 15#include <openssl/rsa.h>
ec577822
BM
16#include <openssl/evp.h>
17#include <openssl/objects.h>
18#include <openssl/x509.h>
7bc0fdd3 19#include "crypto/evp.h"
58964a49 20
f733a5ef 21int EVP_PKEY_decrypt_old(unsigned char *key, const unsigned char *ek, int ekl,
0f113f3e
MC
22 EVP_PKEY *priv)
23{
24 int ret = -1;
b9a86d5d 25 RSA *rsa = NULL;
0f113f3e 26
ed576acd 27 if (EVP_PKEY_get_id(priv) != EVP_PKEY_RSA) {
9311d0c4 28 ERR_raise(ERR_LIB_EVP, EVP_R_PUBLIC_KEY_NOT_RSA);
0f113f3e
MC
29 goto err;
30 }
58964a49 31
b9a86d5d
ZQ
32 rsa = evp_pkey_get0_RSA_int(priv);
33 if (rsa == NULL)
34 goto err;
35
0f113f3e 36 ret =
b9a86d5d 37 RSA_private_decrypt(ekl, ek, key, rsa, RSA_PKCS1_PADDING);
0f113f3e 38 err:
26a7d938 39 return ret;
0f113f3e 40}