blinding.c
Go to the documentation of this file.
1 /* ====================================================================
2  * Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  *
8  * 1. Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  *
11  * 2. Redistributions in binary form must reproduce the above copyright
12  * notice, this list of conditions and the following disclaimer in
13  * the documentation and/or other materials provided with the
14  * distribution.
15  *
16  * 3. All advertising materials mentioning features or use of this
17  * software must display the following acknowledgment:
18  * "This product includes software developed by the OpenSSL Project
19  * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
20  *
21  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
22  * endorse or promote products derived from this software without
23  * prior written permission. For written permission, please contact
24  * openssl-core@openssl.org.
25  *
26  * 5. Products derived from this software may not be called "OpenSSL"
27  * nor may "OpenSSL" appear in their names without prior written
28  * permission of the OpenSSL Project.
29  *
30  * 6. Redistributions of any form whatsoever must retain the following
31  * acknowledgment:
32  * "This product includes software developed by the OpenSSL Project
33  * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
34  *
35  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
36  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
37  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
38  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
39  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
40  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
41  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
42  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
43  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
44  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
45  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
46  * OF THE POSSIBILITY OF SUCH DAMAGE.
47  * ====================================================================
48  *
49  * This product includes cryptographic software written by Eric Young
50  * (eay@cryptsoft.com). This product includes software written by Tim
51  * Hudson (tjh@cryptsoft.com).
52  *
53  * Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
54  * All rights reserved.
55  *
56  * This package is an SSL implementation written
57  * by Eric Young (eay@cryptsoft.com).
58  * The implementation was written so as to conform with Netscapes SSL.
59  *
60  * This library is free for commercial and non-commercial use as long as
61  * the following conditions are aheared to. The following conditions
62  * apply to all code found in this distribution, be it the RC4, RSA,
63  * lhash, DES, etc., code; not just the SSL code. The SSL documentation
64  * included with this distribution is covered by the same copyright terms
65  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
66  *
67  * Copyright remains Eric Young's, and as such any Copyright notices in
68  * the code are not to be removed.
69  * If this package is used in a product, Eric Young should be given attribution
70  * as the author of the parts of the library used.
71  * This can be in the form of a textual message at program startup or
72  * in documentation (online or textual) provided with the package.
73  *
74  * Redistribution and use in source and binary forms, with or without
75  * modification, are permitted provided that the following conditions
76  * are met:
77  * 1. Redistributions of source code must retain the copyright
78  * notice, this list of conditions and the following disclaimer.
79  * 2. Redistributions in binary form must reproduce the above copyright
80  * notice, this list of conditions and the following disclaimer in the
81  * documentation and/or other materials provided with the distribution.
82  * 3. All advertising materials mentioning features or use of this software
83  * must display the following acknowledgement:
84  * "This product includes cryptographic software written by
85  * Eric Young (eay@cryptsoft.com)"
86  * The word 'cryptographic' can be left out if the rouines from the library
87  * being used are not cryptographic related :-).
88  * 4. If you include any Windows specific code (or a derivative thereof) from
89  * the apps directory (application code) you must include an acknowledgement:
90  * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
91  *
92  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
93  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
94  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
95  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
96  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
97  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
98  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
99  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
100  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
101  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
102  * SUCH DAMAGE.
103  *
104  * The licence and distribution terms for any publically available version or
105  * derivative of this code cannot be changed. i.e. this code cannot simply be
106  * copied and put under another distribution licence
107  * [including the GNU Public Licence.] */
108 
109 #include <openssl/rsa.h>
110 
111 #include <string.h>
112 
113 #include <openssl/bn.h>
114 #include <openssl/mem.h>
115 #include <openssl/err.h>
116 
117 #include "internal.h"
118 #include "../../internal.h"
119 
120 
121 #define BN_BLINDING_COUNTER 32
122 
124  BIGNUM *A; // The base blinding factor, Montgomery-encoded.
125  BIGNUM *Ai; // The inverse of the blinding factor, Montgomery-encoded.
126  unsigned counter;
127 };
128 
129 static int bn_blinding_create_param(BN_BLINDING *b, const BIGNUM *e,
130  const BN_MONT_CTX *mont, BN_CTX *ctx);
131 
134  if (ret == NULL) {
136  return NULL;
137  }
138  OPENSSL_memset(ret, 0, sizeof(BN_BLINDING));
139 
140  ret->A = BN_new();
141  if (ret->A == NULL) {
142  goto err;
143  }
144 
145  ret->Ai = BN_new();
146  if (ret->Ai == NULL) {
147  goto err;
148  }
149 
150  // The blinding values need to be created before this blinding can be used.
151  ret->counter = BN_BLINDING_COUNTER - 1;
152 
153  return ret;
154 
155 err:
157  return NULL;
158 }
159 
161  if (r == NULL) {
162  return;
163  }
164 
165  BN_free(r->A);
166  BN_free(r->Ai);
167  OPENSSL_free(r);
168 }
169 
171  b->counter = BN_BLINDING_COUNTER - 1;
172 }
173 
174 static int bn_blinding_update(BN_BLINDING *b, const BIGNUM *e,
175  const BN_MONT_CTX *mont, BN_CTX *ctx) {
176  if (++b->counter == BN_BLINDING_COUNTER) {
177  // re-create blinding parameters
178  if (!bn_blinding_create_param(b, e, mont, ctx)) {
179  goto err;
180  }
181  b->counter = 0;
182  } else {
183  if (!BN_mod_mul_montgomery(b->A, b->A, b->A, mont, ctx) ||
184  !BN_mod_mul_montgomery(b->Ai, b->Ai, b->Ai, mont, ctx)) {
185  goto err;
186  }
187  }
188 
189  return 1;
190 
191 err:
192  // |A| and |Ai| may be in an inconsistent state so they both need to be
193  // replaced the next time this blinding is used. Note that this is only
194  // sufficient because support for |BN_BLINDING_NO_UPDATE| and
195  // |BN_BLINDING_NO_RECREATE| was previously dropped.
196  b->counter = BN_BLINDING_COUNTER - 1;
197 
198  return 0;
199 }
200 
202  const BN_MONT_CTX *mont, BN_CTX *ctx) {
203  // |n| is not Montgomery-encoded and |b->A| is. |BN_mod_mul_montgomery|
204  // cancels one Montgomery factor, so the resulting value of |n| is unencoded.
205  if (!bn_blinding_update(b, e, mont, ctx) ||
206  !BN_mod_mul_montgomery(n, n, b->A, mont, ctx)) {
207  return 0;
208  }
209 
210  return 1;
211 }
212 
214  BN_CTX *ctx) {
215  // |n| is not Montgomery-encoded and |b->A| is. |BN_mod_mul_montgomery|
216  // cancels one Montgomery factor, so the resulting value of |n| is unencoded.
217  return BN_mod_mul_montgomery(n, n, b->Ai, mont, ctx);
218 }
219 
221  const BN_MONT_CTX *mont, BN_CTX *ctx) {
222  int no_inverse;
223  if (!BN_rand_range_ex(b->A, 1, &mont->N) ||
224  // Compute |b->A|^-1 in Montgomery form. Note |BN_from_montgomery| +
225  // |BN_mod_inverse_blinded| is equivalent to, but more efficient than,
226  // |BN_mod_inverse_blinded| + |BN_to_montgomery|.
227  //
228  // We do not retry if |b->A| has no inverse. Finding a non-invertible
229  // value of |b->A| is equivalent to factoring |mont->N|. There is
230  // negligible probability of stumbling on one at random.
231  !BN_from_montgomery(b->Ai, b->A, mont, ctx) ||
232  !BN_mod_inverse_blinded(b->Ai, &no_inverse, b->Ai, mont, ctx) ||
233  // TODO(davidben): |BN_mod_exp_mont| internally computes the result in
234  // Montgomery form. Save a pair of Montgomery reductions and a
235  // multiplication by returning that value directly.
236  !BN_mod_exp_mont(b->A, b->A, e, &mont->N, ctx, mont) ||
237  !BN_to_montgomery(b->A, b->A, mont, ctx)) {
239  return 0;
240  }
241 
242  return 1;
243 }
bn.h
ctx
Definition: benchmark-async.c:30
internal.h
bn_blinding_update
static int bn_blinding_update(BN_BLINDING *b, const BIGNUM *e, const BN_MONT_CTX *mont, BN_CTX *ctx)
Definition: blinding.c:174
bn_blinding_st
Definition: blinding.c:123
OPENSSL_PUT_ERROR
#define OPENSSL_PUT_ERROR(library, reason)
Definition: err.h:423
string.h
error_ref_leak.err
err
Definition: error_ref_leak.py:35
bn_mont_ctx_st
Definition: bn.h:984
BN_free
#define BN_free
Definition: boringssl_prefix_symbols.h:923
bignum_ctx
Definition: ctx.c:91
bn_blinding_st::Ai
BIGNUM * Ai
Definition: blinding.c:125
OPENSSL_memset
static void * OPENSSL_memset(void *dst, int c, size_t n)
Definition: third_party/boringssl-with-bazel/src/crypto/internal.h:835
BN_to_montgomery
#define BN_to_montgomery
Definition: boringssl_prefix_symbols.h:999
OPENSSL_malloc
#define OPENSSL_malloc
Definition: boringssl_prefix_symbols.h:1885
bn_blinding_st::A
BIGNUM * A
Definition: blinding.c:124
BN_mod_exp_mont
#define BN_mod_exp_mont
Definition: boringssl_prefix_symbols.h:950
bn_blinding_create_param
static int bn_blinding_create_param(BN_BLINDING *b, const BIGNUM *e, const BN_MONT_CTX *mont, BN_CTX *ctx)
Definition: blinding.c:220
err.h
ERR_R_INTERNAL_ERROR
#define ERR_R_INTERNAL_ERROR
Definition: err.h:374
rsa.h
BN_BLINDING_new
BN_BLINDING * BN_BLINDING_new(void)
Definition: blinding.c:132
b
uint64_t b
Definition: abseil-cpp/absl/container/internal/layout_test.cc:53
n
int n
Definition: abseil-cpp/absl/container/btree_test.cc:1080
bn_mont_ctx_st::N
BIGNUM N
Definition: bn.h:990
bn_blinding_st::counter
unsigned counter
Definition: blinding.c:126
BN_BLINDING_free
void BN_BLINDING_free(BN_BLINDING *r)
Definition: blinding.c:160
BN_BLINDING_invert
int BN_BLINDING_invert(BIGNUM *n, const BN_BLINDING *b, BN_MONT_CTX *mont, BN_CTX *ctx)
Definition: blinding.c:213
bignum_st
Definition: bn.h:957
ret
UniquePtr< SSL_SESSION > ret
Definition: ssl_x509.cc:1029
fix_build_deps.r
r
Definition: fix_build_deps.py:491
BN_rand_range_ex
#define BN_rand_range_ex
Definition: boringssl_prefix_symbols.h:986
BN_mod_inverse_blinded
#define BN_mod_inverse_blinded
Definition: boringssl_prefix_symbols.h:954
mem.h
BN_BLINDING_convert
int BN_BLINDING_convert(BIGNUM *n, BN_BLINDING *b, const BIGNUM *e, const BN_MONT_CTX *mont, BN_CTX *ctx)
Definition: blinding.c:201
BN_BLINDING_invalidate
void BN_BLINDING_invalidate(BN_BLINDING *b)
Definition: blinding.c:170
rsa_st
Definition: rsa.h:732
BN_mod_mul_montgomery
#define BN_mod_mul_montgomery
Definition: boringssl_prefix_symbols.h:961
BN_BLINDING_COUNTER
#define BN_BLINDING_COUNTER
Definition: blinding.c:121
OPENSSL_free
#define OPENSSL_free
Definition: boringssl_prefix_symbols.h:1869
BN_from_montgomery
#define BN_from_montgomery
Definition: boringssl_prefix_symbols.h:924
BN_new
#define BN_new
Definition: boringssl_prefix_symbols.h:971
ERR_R_MALLOC_FAILURE
#define ERR_R_MALLOC_FAILURE
Definition: err.h:371


grpc
Author(s):
autogenerated on Thu Mar 13 2025 02:58:39