Coverage Report

Created: 2025-07-11 06:57

/src/openssl/crypto/rsa/rsa_crpt.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved.
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
/*
11
 * RSA low level APIs are deprecated for public use, but still ok for
12
 * internal use.
13
 */
14
#include "internal/deprecated.h"
15
16
#include <stdio.h>
17
#include <openssl/crypto.h>
18
#include "internal/cryptlib.h"
19
#include "crypto/bn.h"
20
#include <openssl/rand.h>
21
#include "rsa_local.h"
22
23
int RSA_bits(const RSA *r)
24
9.84k
{
25
9.84k
    return BN_num_bits(r->n);
26
9.84k
}
27
28
int RSA_size(const RSA *r)
29
10.1k
{
30
10.1k
    return BN_num_bytes(r->n);
31
10.1k
}
32
33
int RSA_public_encrypt(int flen, const unsigned char *from, unsigned char *to,
34
                       RSA *rsa, int padding)
35
0
{
36
0
    return rsa->meth->rsa_pub_enc(flen, from, to, rsa, padding);
37
0
}
38
39
int RSA_private_encrypt(int flen, const unsigned char *from,
40
                        unsigned char *to, RSA *rsa, int padding)
41
0
{
42
0
    return rsa->meth->rsa_priv_enc(flen, from, to, rsa, padding);
43
0
}
44
45
int RSA_private_decrypt(int flen, const unsigned char *from,
46
                        unsigned char *to, RSA *rsa, int padding)
47
0
{
48
0
    return rsa->meth->rsa_priv_dec(flen, from, to, rsa, padding);
49
0
}
50
51
int RSA_public_decrypt(int flen, const unsigned char *from, unsigned char *to,
52
                       RSA *rsa, int padding)
53
0
{
54
0
    return rsa->meth->rsa_pub_dec(flen, from, to, rsa, padding);
55
0
}
56
57
int RSA_flags(const RSA *r)
58
0
{
59
0
    return r == NULL ? 0 : r->meth->flags;
60
0
}
61
62
void RSA_blinding_off(RSA *rsa)
63
0
{
64
0
    rsa->flags &= ~RSA_FLAG_BLINDING;
65
0
    rsa->flags |= RSA_FLAG_NO_BLINDING;
66
0
}
67
68
int RSA_blinding_on(RSA *rsa, BN_CTX *ctx)
69
0
{
70
71
0
    rsa->flags |= RSA_FLAG_BLINDING;
72
0
    rsa->flags &= ~RSA_FLAG_NO_BLINDING;
73
0
    return 1;
74
0
}
75
76
static BIGNUM *rsa_get_public_exp(const BIGNUM *d, const BIGNUM *p,
77
                                  const BIGNUM *q, BN_CTX *ctx)
78
0
{
79
0
    BIGNUM *ret = NULL, *r0, *r1, *r2;
80
81
0
    if (d == NULL || p == NULL || q == NULL)
82
0
        return NULL;
83
84
0
    BN_CTX_start(ctx);
85
0
    r0 = BN_CTX_get(ctx);
86
0
    r1 = BN_CTX_get(ctx);
87
0
    r2 = BN_CTX_get(ctx);
88
0
    if (r2 == NULL)
89
0
        goto err;
90
91
0
    if (!BN_sub(r1, p, BN_value_one()))
92
0
        goto err;
93
0
    if (!BN_sub(r2, q, BN_value_one()))
94
0
        goto err;
95
0
    if (!BN_mul(r0, r1, r2, ctx))
96
0
        goto err;
97
98
0
    ret = BN_mod_inverse(NULL, d, r0, ctx);
99
0
 err:
100
0
    BN_CTX_end(ctx);
101
0
    return ret;
102
0
}
103
104
BN_BLINDING *RSA_setup_blinding(RSA *rsa, BN_CTX *in_ctx)
105
0
{
106
0
    BIGNUM *e;
107
0
    BN_CTX *ctx;
108
0
    BN_BLINDING *ret = NULL;
109
110
0
    if (in_ctx == NULL) {
111
0
        if ((ctx = BN_CTX_new_ex(rsa->libctx)) == NULL)
112
0
            return 0;
113
0
    } else {
114
0
        ctx = in_ctx;
115
0
    }
116
117
0
    BN_CTX_start(ctx);
118
0
    e = BN_CTX_get(ctx);
119
0
    if (e == NULL) {
120
0
        ERR_raise(ERR_LIB_RSA, ERR_R_BN_LIB);
121
0
        goto err;
122
0
    }
123
124
0
    if (rsa->e == NULL) {
125
0
        e = rsa_get_public_exp(rsa->d, rsa->p, rsa->q, ctx);
126
0
        if (e == NULL) {
127
0
            ERR_raise(ERR_LIB_RSA, RSA_R_NO_PUBLIC_EXPONENT);
128
0
            goto err;
129
0
        }
130
0
    } else {
131
0
        e = rsa->e;
132
0
    }
133
134
0
    {
135
0
        BIGNUM *n = BN_new();
136
137
0
        if (n == NULL) {
138
0
            ERR_raise(ERR_LIB_RSA, ERR_R_BN_LIB);
139
0
            goto err;
140
0
        }
141
0
        BN_with_flags(n, rsa->n, BN_FLG_CONSTTIME);
142
143
0
        ret = BN_BLINDING_create_param(NULL, e, n, ctx, rsa->meth->bn_mod_exp,
144
0
                                       rsa->_method_mod_n);
145
        /* We MUST free n before any further use of rsa->n */
146
0
        BN_free(n);
147
0
    }
148
0
    if (ret == NULL) {
149
0
        ERR_raise(ERR_LIB_RSA, ERR_R_BN_LIB);
150
0
        goto err;
151
0
    }
152
153
0
 err:
154
0
    BN_CTX_end(ctx);
155
0
    if (ctx != in_ctx)
156
0
        BN_CTX_free(ctx);
157
0
    if (e != rsa->e)
158
0
        BN_free(e);
159
160
0
    return ret;
161
0
}