]> git.ipfire.org Git - thirdparty/openssl.git/blame - include/crypto/rsa.h
Deprecate RSA harder
[thirdparty/openssl.git] / include / crypto / rsa.h
CommitLineData
c3a4fa4c 1/*
33388b44 2 * Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved.
c3a4fa4c
RL
3 *
4 * Licensed under the Apache License 2.0 (the "License"). You may not use
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
8 */
9
10#ifndef OSSL_INTERNAL_RSA_H
11# define OSSL_INTERNAL_RSA_H
12
4f2271d5
SL
13# include <openssl/core.h>
14# include <openssl/rsa.h>
d7e498ac 15# include "crypto/types.h"
c3a4fa4c 16
15671090
RL
17typedef struct rsa_pss_params_30_st {
18 int hash_algorithm_nid;
19 struct {
20 int algorithm_nid; /* Currently always NID_mgf1 */
21 int hash_algorithm_nid;
22 } mask_gen;
6ce6ad39
RL
23 int salt_len;
24 int trailer_field;
15671090
RL
25} RSA_PSS_PARAMS_30;
26
23b2fc0b
P
27RSA_PSS_PARAMS_30 *ossl_rsa_get0_pss_params_30(RSA *r);
28int ossl_rsa_pss_params_30_set_defaults(RSA_PSS_PARAMS_30 *rsa_pss_params);
29int ossl_rsa_pss_params_30_copy(RSA_PSS_PARAMS_30 *to,
30 const RSA_PSS_PARAMS_30 *from);
31int ossl_rsa_pss_params_30_is_unrestricted(const RSA_PSS_PARAMS_30 *rsa_pss_params);
32int ossl_rsa_pss_params_30_set_hashalg(RSA_PSS_PARAMS_30 *rsa_pss_params,
33 int hashalg_nid);
34int ossl_rsa_pss_params_30_set_maskgenalg(RSA_PSS_PARAMS_30 *rsa_pss_params,
35 int maskgenalg_nid);
36int ossl_rsa_pss_params_30_set_maskgenhashalg(RSA_PSS_PARAMS_30 *rsa_pss_params,
37 int maskgenhashalg_nid);
38int ossl_rsa_pss_params_30_set_saltlen(RSA_PSS_PARAMS_30 *rsa_pss_params,
39 int saltlen);
40int ossl_rsa_pss_params_30_set_trailerfield(RSA_PSS_PARAMS_30 *rsa_pss_params,
41 int trailerfield);
42int ossl_rsa_pss_params_30_hashalg(const RSA_PSS_PARAMS_30 *rsa_pss_params);
43int ossl_rsa_pss_params_30_maskgenalg(const RSA_PSS_PARAMS_30 *rsa_pss_params);
44int ossl_rsa_pss_params_30_maskgenhashalg(const RSA_PSS_PARAMS_30 *rsa_pss_params);
45int ossl_rsa_pss_params_30_saltlen(const RSA_PSS_PARAMS_30 *rsa_pss_params);
46int ossl_rsa_pss_params_30_trailerfield(const RSA_PSS_PARAMS_30 *rsa_pss_params);
47
48const char *ossl_rsa_mgf_nid2name(int mgf);
49int ossl_rsa_oaeppss_md2nid(const EVP_MD *md);
50const char *ossl_rsa_oaeppss_nid2name(int md);
51
b4250010
DMSP
52RSA *ossl_rsa_new_with_ctx(OSSL_LIB_CTX *libctx);
53OSSL_LIB_CTX *ossl_rsa_get0_libctx(RSA *r);
23b2fc0b
P
54
55int ossl_rsa_set0_all_params(RSA *r, const STACK_OF(BIGNUM) *primes,
56 const STACK_OF(BIGNUM) *exps,
57 const STACK_OF(BIGNUM) *coeffs);
58int ossl_rsa_get0_all_params(RSA *r, STACK_OF(BIGNUM_const) *primes,
59 STACK_OF(BIGNUM_const) *exps,
60 STACK_OF(BIGNUM_const) *coeffs);
61
62int ossl_rsa_todata(RSA *rsa, OSSL_PARAM_BLD *bld, OSSL_PARAM params[]);
63int ossl_rsa_fromdata(RSA *rsa, const OSSL_PARAM params[]);
64int ossl_rsa_pss_params_30_todata(const RSA_PSS_PARAMS_30 *pss,
65 OSSL_PARAM_BLD *bld, OSSL_PARAM params[]);
66int ossl_rsa_pss_params_30_fromdata(RSA_PSS_PARAMS_30 *pss_params,
67 const OSSL_PARAM params[],
b4250010 68 OSSL_LIB_CTX *libctx);
23b2fc0b 69
b4250010 70int ossl_rsa_padding_check_PKCS1_type_2_TLS(OSSL_LIB_CTX *ctx, unsigned char *to,
23b2fc0b
P
71 size_t tlen,
72 const unsigned char *from,
73 size_t flen, int client_version,
74 int alt_version);
b4250010 75int ossl_rsa_padding_add_PKCS1_OAEP_mgf1_ex(OSSL_LIB_CTX *libctx,
23b2fc0b
P
76 unsigned char *to, int tlen,
77 const unsigned char *from, int flen,
78 const unsigned char *param,
79 int plen, const EVP_MD *md,
80 const EVP_MD *mgf1md);
81
82int ossl_rsa_validate_public(const RSA *key);
83int ossl_rsa_validate_private(const RSA *key);
84int ossl_rsa_validate_pairwise(const RSA *key);
12603de6 85
6f4b7663
RL
86int int_rsa_verify(int dtype, const unsigned char *m,
87 unsigned int m_len, unsigned char *rm,
88 size_t *prm_len, const unsigned char *sigbuf,
89 size_t siglen, RSA *rsa);
90
23b2fc0b 91const unsigned char *ossl_rsa_digestinfo_encoding(int md_nid, size_t *len);
6f4b7663 92
23b2fc0b
P
93extern const char *ossl_rsa_mp_factor_names[];
94extern const char *ossl_rsa_mp_exp_names[];
95extern const char *ossl_rsa_mp_coeff_names[];
96ebe52e 96
9ab7fe48
MC
97ASN1_STRING *ossl_rsa_ctx_to_pss_string(EVP_PKEY_CTX *pkctx);
98int ossl_rsa_pss_to_ctx(EVP_MD_CTX *ctx, EVP_PKEY_CTX *pkctx,
99 const X509_ALGOR *sigalg, EVP_PKEY *pkey);
100
4f2271d5
SL
101# if defined(FIPS_MODULE) && !defined(OPENSSL_NO_ACVP_TESTS)
102int rsa_acvp_test_gen_params_new(OSSL_PARAM **dst, const OSSL_PARAM src[]);
103void rsa_acvp_test_gen_params_free(OSSL_PARAM *dst);
104
105int rsa_acvp_test_set_params(RSA *r, const OSSL_PARAM params[]);
106int rsa_acvp_test_get_params(RSA *r, OSSL_PARAM params[]);
107typedef struct rsa_acvp_test_st RSA_ACVP_TEST;
108void rsa_acvp_test_free(RSA_ACVP_TEST *t);
109# else
110# define RSA_ACVP_TEST void
111# endif
112
c3a4fa4c 113#endif