]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/evp/p_enc.c
Don't call ossl_provider_free() without first setting refcnt
[thirdparty/openssl.git] / crypto / evp / p_enc.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
0f113f3e
MC
21int EVP_PKEY_encrypt_old(unsigned char *ek, const unsigned char *key,
22 int key_len, EVP_PKEY *pubk)
23{
24 int ret = 0;
25
ed576acd 26 if (EVP_PKEY_get_id(pubk) != EVP_PKEY_RSA) {
9311d0c4 27 ERR_raise(ERR_LIB_EVP, EVP_R_PUBLIC_KEY_NOT_RSA);
0f113f3e
MC
28 goto err;
29 }
7bc0fdd3 30
0f113f3e 31 ret =
7bc0fdd3 32 RSA_public_encrypt(key_len, key, ek, evp_pkey_get0_RSA_int(pubk),
0f113f3e
MC
33 RSA_PKCS1_PADDING);
34 err:
26a7d938 35 return ret;
0f113f3e 36}