source: EcnlProtoTool/trunk/openssl-1.1.0e/crypto/bn/bn_x931p.c@ 331

Last change on this file since 331 was 331, checked in by coas-nagasima, 6 years ago

prototoolに関連するプロジェクトをnewlibからmuslを使うよう変更・更新
ntshellをnewlibの下位の実装から、muslのsyscallの実装に変更・更新
以下のOSSをアップデート
・mruby-1.3.0
・musl-1.1.18
・onigmo-6.1.3
・tcc-0.9.27
以下のOSSを追加
・openssl-1.1.0e
・curl-7.57.0
・zlib-1.2.11
以下のmrbgemsを追加
・iij/mruby-digest
・iij/mruby-env
・iij/mruby-errno
・iij/mruby-iijson
・iij/mruby-ipaddr
・iij/mruby-mock
・iij/mruby-require
・iij/mruby-tls-openssl

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csrc
File size: 5.6 KB
Line 
1/*
2 * Copyright 2011-2016 The OpenSSL Project Authors. All Rights Reserved.
3 *
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
7 * https://www.openssl.org/source/license.html
8 */
9
10#include <stdio.h>
11#include <openssl/bn.h>
12#include "bn_lcl.h"
13
14/* X9.31 routines for prime derivation */
15
16/*
17 * X9.31 prime derivation. This is used to generate the primes pi (p1, p2,
18 * q1, q2) from a parameter Xpi by checking successive odd integers.
19 */
20
21static int bn_x931_derive_pi(BIGNUM *pi, const BIGNUM *Xpi, BN_CTX *ctx,
22 BN_GENCB *cb)
23{
24 int i = 0, is_prime;
25 if (!BN_copy(pi, Xpi))
26 return 0;
27 if (!BN_is_odd(pi) && !BN_add_word(pi, 1))
28 return 0;
29 for (;;) {
30 i++;
31 BN_GENCB_call(cb, 0, i);
32 /* NB 27 MR is specified in X9.31 */
33 is_prime = BN_is_prime_fasttest_ex(pi, 27, ctx, 1, cb);
34 if (is_prime < 0)
35 return 0;
36 if (is_prime)
37 break;
38 if (!BN_add_word(pi, 2))
39 return 0;
40 }
41 BN_GENCB_call(cb, 2, i);
42 return 1;
43}
44
45/*
46 * This is the main X9.31 prime derivation function. From parameters Xp1, Xp2
47 * and Xp derive the prime p. If the parameters p1 or p2 are not NULL they
48 * will be returned too: this is needed for testing.
49 */
50
51int BN_X931_derive_prime_ex(BIGNUM *p, BIGNUM *p1, BIGNUM *p2,
52 const BIGNUM *Xp, const BIGNUM *Xp1,
53 const BIGNUM *Xp2, const BIGNUM *e, BN_CTX *ctx,
54 BN_GENCB *cb)
55{
56 int ret = 0;
57
58 BIGNUM *t, *p1p2, *pm1;
59
60 /* Only even e supported */
61 if (!BN_is_odd(e))
62 return 0;
63
64 BN_CTX_start(ctx);
65 if (!p1)
66 p1 = BN_CTX_get(ctx);
67
68 if (!p2)
69 p2 = BN_CTX_get(ctx);
70
71 t = BN_CTX_get(ctx);
72
73 p1p2 = BN_CTX_get(ctx);
74
75 pm1 = BN_CTX_get(ctx);
76
77 if (pm1 == NULL)
78 goto err;
79
80 if (!bn_x931_derive_pi(p1, Xp1, ctx, cb))
81 goto err;
82
83 if (!bn_x931_derive_pi(p2, Xp2, ctx, cb))
84 goto err;
85
86 if (!BN_mul(p1p2, p1, p2, ctx))
87 goto err;
88
89 /* First set p to value of Rp */
90
91 if (!BN_mod_inverse(p, p2, p1, ctx))
92 goto err;
93
94 if (!BN_mul(p, p, p2, ctx))
95 goto err;
96
97 if (!BN_mod_inverse(t, p1, p2, ctx))
98 goto err;
99
100 if (!BN_mul(t, t, p1, ctx))
101 goto err;
102
103 if (!BN_sub(p, p, t))
104 goto err;
105
106 if (p->neg && !BN_add(p, p, p1p2))
107 goto err;
108
109 /* p now equals Rp */
110
111 if (!BN_mod_sub(p, p, Xp, p1p2, ctx))
112 goto err;
113
114 if (!BN_add(p, p, Xp))
115 goto err;
116
117 /* p now equals Yp0 */
118
119 for (;;) {
120 int i = 1;
121 BN_GENCB_call(cb, 0, i++);
122 if (!BN_copy(pm1, p))
123 goto err;
124 if (!BN_sub_word(pm1, 1))
125 goto err;
126 if (!BN_gcd(t, pm1, e, ctx))
127 goto err;
128 if (BN_is_one(t)) {
129 /*
130 * X9.31 specifies 8 MR and 1 Lucas test or any prime test
131 * offering similar or better guarantees 50 MR is considerably
132 * better.
133 */
134 int r = BN_is_prime_fasttest_ex(p, 50, ctx, 1, cb);
135 if (r < 0)
136 goto err;
137 if (r)
138 break;
139 }
140 if (!BN_add(p, p, p1p2))
141 goto err;
142 }
143
144 BN_GENCB_call(cb, 3, 0);
145
146 ret = 1;
147
148 err:
149
150 BN_CTX_end(ctx);
151
152 return ret;
153}
154
155/*
156 * Generate pair of parameters Xp, Xq for X9.31 prime generation. Note: nbits
157 * parameter is sum of number of bits in both.
158 */
159
160int BN_X931_generate_Xpq(BIGNUM *Xp, BIGNUM *Xq, int nbits, BN_CTX *ctx)
161{
162 BIGNUM *t;
163 int i;
164 /*
165 * Number of bits for each prime is of the form 512+128s for s = 0, 1,
166 * ...
167 */
168 if ((nbits < 1024) || (nbits & 0xff))
169 return 0;
170 nbits >>= 1;
171 /*
172 * The random value Xp must be between sqrt(2) * 2^(nbits-1) and 2^nbits
173 * - 1. By setting the top two bits we ensure that the lower bound is
174 * exceeded.
175 */
176 if (!BN_rand(Xp, nbits, BN_RAND_TOP_TWO, BN_RAND_BOTTOM_ANY))
177 goto err;
178
179 BN_CTX_start(ctx);
180 t = BN_CTX_get(ctx);
181
182 for (i = 0; i < 1000; i++) {
183 if (!BN_rand(Xq, nbits, BN_RAND_TOP_TWO, BN_RAND_BOTTOM_ANY))
184 goto err;
185 /* Check that |Xp - Xq| > 2^(nbits - 100) */
186 BN_sub(t, Xp, Xq);
187 if (BN_num_bits(t) > (nbits - 100))
188 break;
189 }
190
191 BN_CTX_end(ctx);
192
193 if (i < 1000)
194 return 1;
195
196 return 0;
197
198 err:
199 BN_CTX_end(ctx);
200 return 0;
201}
202
203/*
204 * Generate primes using X9.31 algorithm. Of the values p, p1, p2, Xp1 and
205 * Xp2 only 'p' needs to be non-NULL. If any of the others are not NULL the
206 * relevant parameter will be stored in it. Due to the fact that |Xp - Xq| >
207 * 2^(nbits - 100) must be satisfied Xp and Xq are generated using the
208 * previous function and supplied as input.
209 */
210
211int BN_X931_generate_prime_ex(BIGNUM *p, BIGNUM *p1, BIGNUM *p2,
212 BIGNUM *Xp1, BIGNUM *Xp2,
213 const BIGNUM *Xp,
214 const BIGNUM *e, BN_CTX *ctx, BN_GENCB *cb)
215{
216 int ret = 0;
217
218 BN_CTX_start(ctx);
219 if (!Xp1)
220 Xp1 = BN_CTX_get(ctx);
221 if (!Xp2)
222 Xp2 = BN_CTX_get(ctx);
223
224 if (!BN_rand(Xp1, 101, BN_RAND_TOP_ONE, BN_RAND_BOTTOM_ANY))
225 goto error;
226 if (!BN_rand(Xp2, 101, BN_RAND_TOP_ONE, BN_RAND_BOTTOM_ANY))
227 goto error;
228 if (!BN_X931_derive_prime_ex(p, p1, p2, Xp, Xp1, Xp2, e, ctx, cb))
229 goto error;
230
231 ret = 1;
232
233 error:
234 BN_CTX_end(ctx);
235
236 return ret;
237
238}
Note: See TracBrowser for help on using the repository browser.