]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/evp/p_dec.c
EVP: Adapt EVP_PKEY2PKCS8() to better handle provider-native keys
[thirdparty/openssl.git] / crypto / evp / p_dec.c
CommitLineData
62867571 1/*
33388b44 2 * Copyright 1995-2020 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
c5f87134
P
10/*
11 * RSA low level APIs are deprecated for public use, but still ok for
12 * internal use.
13 */
14#include "internal/deprecated.h"
15
58964a49 16#include <stdio.h>
b39fc560 17#include "internal/cryptlib.h"
3c27208f 18#include <openssl/rsa.h>
ec577822
BM
19#include <openssl/evp.h>
20#include <openssl/objects.h>
21#include <openssl/x509.h>
58964a49 22
f733a5ef 23int EVP_PKEY_decrypt_old(unsigned char *key, const unsigned char *ek, int ekl,
0f113f3e
MC
24 EVP_PKEY *priv)
25{
26 int ret = -1;
27
cf1b7d96 28#ifndef OPENSSL_NO_RSA
3aeb9348 29 if (EVP_PKEY_id(priv) != EVP_PKEY_RSA) {
13e91dd3 30#endif
0f113f3e 31 EVPerr(EVP_F_EVP_PKEY_DECRYPT_OLD, EVP_R_PUBLIC_KEY_NOT_RSA);
cf1b7d96 32#ifndef OPENSSL_NO_RSA
0f113f3e
MC
33 goto err;
34 }
58964a49 35
0f113f3e 36 ret =
3aeb9348
DSH
37 RSA_private_decrypt(ekl, ek, key, EVP_PKEY_get0_RSA(priv),
38 RSA_PKCS1_PADDING);
0f113f3e 39 err:
13e91dd3 40#endif
26a7d938 41 return ret;
0f113f3e 42}