]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/rsa/rsa_locl.h
Update eng_fat.c
[thirdparty/openssl.git] / crypto / rsa / rsa_locl.h
CommitLineData
9862e9aa 1/*
665d899f 2 * Copyright 2006-2017 The OpenSSL Project Authors. All Rights Reserved.
9862e9aa 3 *
2039c421
RS
4 * Licensed under the OpenSSL license (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
9862e9aa 7 * https://www.openssl.org/source/license.html
9862e9aa
RL
8 */
9
10#include <openssl/rsa.h>
2f545ae4 11#include "internal/refcount.h"
9862e9aa 12
665d899f
PY
13#define RSA_MAX_PRIME_NUM 16
14#define RSA_MIN_PRIME_SIZE 64
15
16typedef struct rsa_prime_info_st {
17 BIGNUM *r;
18 BIGNUM *d;
19 BIGNUM *t;
20 /* save product of primes prior to this one */
21 BIGNUM *pp;
22 BN_MONT_CTX *m;
23} RSA_PRIME_INFO;
24
25DECLARE_ASN1_ITEM(RSA_PRIME_INFO)
26DEFINE_STACK_OF(RSA_PRIME_INFO)
27
9862e9aa
RL
28struct rsa_st {
29 /*
30 * The first parameter is used to pickup errors where this is passed
31 * instead of aEVP_PKEY, it is set to 0
32 */
33 int pad;
6a32a3c0 34 int32_t version;
9862e9aa
RL
35 const RSA_METHOD *meth;
36 /* functional reference if 'meth' is ENGINE-provided */
37 ENGINE *engine;
38 BIGNUM *n;
39 BIGNUM *e;
40 BIGNUM *d;
41 BIGNUM *p;
42 BIGNUM *q;
43 BIGNUM *dmp1;
44 BIGNUM *dmq1;
45 BIGNUM *iqmp;
665d899f
PY
46 /* for multi-prime RSA, defined in RFC 8017 */
47 STACK_OF(RSA_PRIME_INFO) *prime_infos;
d771441d
DSH
48 /* If a PSS only key this contains the parameter restrictions */
49 RSA_PSS_PARAMS *pss;
9862e9aa
RL
50 /* be careful using this if the RSA structure is shared */
51 CRYPTO_EX_DATA ex_data;
2f545ae4 52 CRYPTO_REF_COUNT references;
9862e9aa
RL
53 int flags;
54 /* Used to cache montgomery values */
55 BN_MONT_CTX *_method_mod_n;
56 BN_MONT_CTX *_method_mod_p;
57 BN_MONT_CTX *_method_mod_q;
58 /*
59 * all BIGNUM values are actually in the following data, if it is not
60 * NULL
61 */
62 char *bignum_data;
63 BN_BLINDING *blinding;
64 BN_BLINDING *mt_blinding;
65 CRYPTO_RWLOCK *lock;
66};
67
b72c9121
RL
68struct rsa_meth_st {
69 char *name;
70 int (*rsa_pub_enc) (int flen, const unsigned char *from,
71 unsigned char *to, RSA *rsa, int padding);
72 int (*rsa_pub_dec) (int flen, const unsigned char *from,
73 unsigned char *to, RSA *rsa, int padding);
74 int (*rsa_priv_enc) (int flen, const unsigned char *from,
75 unsigned char *to, RSA *rsa, int padding);
76 int (*rsa_priv_dec) (int flen, const unsigned char *from,
77 unsigned char *to, RSA *rsa, int padding);
78 /* Can be null */
79 int (*rsa_mod_exp) (BIGNUM *r0, const BIGNUM *I, RSA *rsa, BN_CTX *ctx);
80 /* Can be null */
81 int (*bn_mod_exp) (BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
82 const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx);
83 /* called at new */
84 int (*init) (RSA *rsa);
85 /* called at free */
86 int (*finish) (RSA *rsa);
87 /* RSA_METHOD_FLAG_* things */
88 int flags;
89 /* may be needed! */
90 char *app_data;
91 /*
92 * New sign and verify functions: some libraries don't allow arbitrary
93 * data to be signed/verified: this allows them to be used. Note: for
94 * this to work the RSA_public_decrypt() and RSA_private_encrypt() should
95 * *NOT* be used RSA_sign(), RSA_verify() should be used instead.
96 */
97 int (*rsa_sign) (int type,
98 const unsigned char *m, unsigned int m_length,
99 unsigned char *sigret, unsigned int *siglen,
100 const RSA *rsa);
101 int (*rsa_verify) (int dtype, const unsigned char *m,
102 unsigned int m_length, const unsigned char *sigbuf,
103 unsigned int siglen, const RSA *rsa);
104 /*
105 * If this callback is NULL, the builtin software RSA key-gen will be
106 * used. This is for behavioural compatibility whilst the code gets
107 * rewired, but one day it would be nice to assume there are no such
108 * things as "builtin software" implementations.
109 */
110 int (*rsa_keygen) (RSA *rsa, int bits, BIGNUM *e, BN_GENCB *cb);
665d899f
PY
111 int (*rsa_multi_prime_keygen) (RSA *rsa, int bits, int primes,
112 BIGNUM *e, BN_GENCB *cb);
b72c9121
RL
113};
114
0f113f3e
MC
115extern int int_rsa_verify(int dtype, const unsigned char *m,
116 unsigned int m_len, unsigned char *rm,
117 size_t *prm_len, const unsigned char *sigbuf,
118 size_t siglen, RSA *rsa);
87ee7b22
DSH
119/* Macros to test if a pkey or ctx is for a PSS key */
120#define pkey_is_pss(pkey) (pkey->ameth->pkey_id == EVP_PKEY_RSA_PSS)
121#define pkey_ctx_is_pss(ctx) (ctx->pmeth->pkey_id == EVP_PKEY_RSA_PSS)
47e42b3c
DSH
122
123RSA_PSS_PARAMS *rsa_pss_params_create(const EVP_MD *sigmd,
124 const EVP_MD *mgf1md, int saltlen);
cfd81c6d
DSH
125int rsa_pss_get_param(const RSA_PSS_PARAMS *pss, const EVP_MD **pmd,
126 const EVP_MD **pmgf1md, int *psaltlen);
665d899f
PY
127/* internal function to clear and free multi-prime parameters */
128void rsa_multip_info_free_ex(RSA_PRIME_INFO *pinfo);
129void rsa_multip_info_free(RSA_PRIME_INFO *pinfo);
130RSA_PRIME_INFO *rsa_multip_info_new(void);
131int rsa_multip_calc_product(RSA *rsa);
0122add6 132int rsa_multip_cap(int bits);