bn_nist.c 21.9 KB
Newer Older
U
Ulf Möller 已提交
1
/* crypto/bn/bn_nist.c */
2 3 4
/*
 * Written by Nils Larsch for the OpenSSL project
 */
B
Bodo Möller 已提交
5
/* ====================================================================
6
 * Copyright (c) 1998-2005 The OpenSSL Project.  All rights reserved.
B
Bodo Möller 已提交
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer. 
 *
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in
 *    the documentation and/or other materials provided with the
 *    distribution.
 *
 * 3. All advertising materials mentioning features or use of this
 *    software must display the following acknowledgment:
 *    "This product includes software developed by the OpenSSL Project
 *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
 *
 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
 *    endorse or promote products derived from this software without
 *    prior written permission. For written permission, please contact
 *    openssl-core@openssl.org.
 *
 * 5. Products derived from this software may not be called "OpenSSL"
 *    nor may "OpenSSL" appear in their names without prior written
 *    permission of the OpenSSL Project.
 *
 * 6. Redistributions of any form whatsoever must retain the following
 *    acknowledgment:
 *    "This product includes software developed by the OpenSSL Project
 *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
 *
 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 * OF THE POSSIBILITY OF SUCH DAMAGE.
 * ====================================================================
 *
 * This product includes cryptographic software written by Eric Young
 * (eay@cryptsoft.com).  This product includes software written by Tim
 * Hudson (tjh@cryptsoft.com).
 *
 */

#include "bn_lcl.h"
B
Bodo Möller 已提交
60
#include "cryptlib.h"
B
Bodo Möller 已提交
61 62 63 64

#define BN_NIST_192_TOP	(192+BN_BITS2-1)/BN_BITS2
#define BN_NIST_224_TOP	(224+BN_BITS2-1)/BN_BITS2
#define BN_NIST_256_TOP	(256+BN_BITS2-1)/BN_BITS2
B
Bodo Möller 已提交
65
#define BN_NIST_384_TOP	(384+BN_BITS2-1)/BN_BITS2
B
Bodo Möller 已提交
66 67 68
#define BN_NIST_521_TOP	(521+BN_BITS2-1)/BN_BITS2

#if BN_BITS2 == 64
69
static const BN_ULONG _nist_p_192[] =
70 71
	{0xFFFFFFFFFFFFFFFFULL,0xFFFFFFFFFFFFFFFEULL,
	0xFFFFFFFFFFFFFFFFULL};
72
static const BN_ULONG _nist_p_224[] =
73 74
	{0x0000000000000001ULL,0xFFFFFFFF00000000ULL,
	0xFFFFFFFFFFFFFFFFULL,0x00000000FFFFFFFFULL};
75
static const BN_ULONG _nist_p_256[] =
76 77
	{0xFFFFFFFFFFFFFFFFULL,0x00000000FFFFFFFFULL,
	0x0000000000000000ULL,0xFFFFFFFF00000001ULL};
78
static const BN_ULONG _nist_p_384[] =
79 80 81
	{0x00000000FFFFFFFFULL,0xFFFFFFFF00000000ULL,
	0xFFFFFFFFFFFFFFFEULL,0xFFFFFFFFFFFFFFFFULL,
	0xFFFFFFFFFFFFFFFFULL,0xFFFFFFFFFFFFFFFFULL};
82
static const BN_ULONG _nist_p_521[] =
83 84 85 86 87
	{0xFFFFFFFFFFFFFFFFULL,0xFFFFFFFFFFFFFFFFULL,
	0xFFFFFFFFFFFFFFFFULL,0xFFFFFFFFFFFFFFFFULL,
	0xFFFFFFFFFFFFFFFFULL,0xFFFFFFFFFFFFFFFFULL,
	0xFFFFFFFFFFFFFFFFULL,0xFFFFFFFFFFFFFFFFULL,
	0x00000000000001FFULL};
B
Bodo Möller 已提交
88
#elif BN_BITS2 == 32
89
static const BN_ULONG _nist_p_192[] = {0xFFFFFFFF,0xFFFFFFFF,0xFFFFFFFE,
B
Bodo Möller 已提交
90
	0xFFFFFFFF,0xFFFFFFFF,0xFFFFFFFF};
91
static const BN_ULONG _nist_p_224[] = {0x00000001,0x00000000,0x00000000,
B
Bodo Möller 已提交
92
	0xFFFFFFFF,0xFFFFFFFF,0xFFFFFFFF,0xFFFFFFFF};
93
static const BN_ULONG _nist_p_256[] = {0xFFFFFFFF,0xFFFFFFFF,0xFFFFFFFF,
B
Bodo Möller 已提交
94
	0x00000000,0x00000000,0x00000000,0x00000001,0xFFFFFFFF};
95
static const BN_ULONG _nist_p_384[] = {0xFFFFFFFF,0x00000000,0x00000000,
B
Bodo Möller 已提交
96 97
	0xFFFFFFFF,0xFFFFFFFE,0xFFFFFFFF,0xFFFFFFFF,0xFFFFFFFF,0xFFFFFFFF,
	0xFFFFFFFF,0xFFFFFFFF,0xFFFFFFFF};
98
static const BN_ULONG _nist_p_521[] = {0xFFFFFFFF,0xFFFFFFFF,0xFFFFFFFF,
B
Bodo Möller 已提交
99 100 101 102
	0xFFFFFFFF,0xFFFFFFFF,0xFFFFFFFF,0xFFFFFFFF,0xFFFFFFFF,0xFFFFFFFF,
	0xFFFFFFFF,0xFFFFFFFF,0xFFFFFFFF,0xFFFFFFFF,0xFFFFFFFF,0xFFFFFFFF,
	0xFFFFFFFF,0x000001FF};
#elif BN_BITS2 == 16
103
static const BN_ULONG _nist_p_192[] = {0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFE,
B
Bodo Möller 已提交
104
	0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF};
105
static const BN_ULONG _nist_p_224[] = {0x0001,0x0000,0x0000,0x0000,0x0000,
B
Bodo Möller 已提交
106
	0x0000,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF};
107
static const BN_ULONG _nist_p_256[] = {0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,
B
Bodo Möller 已提交
108 109
	0xFFFF,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0001,0x0000,0xFFFF,
	0xFFFF};
110
static const BN_ULONG _nist_p_384[] = {0xFFFF,0xFFFF,0x0000,0x0000,0x0000,
B
Bodo Möller 已提交
111 112
	0x0000,0xFFFF,0xFFFF,0xFFFE,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,
	0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF};
113
static const BN_ULONG _nist_p_521[] = {0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,
B
Bodo Möller 已提交
114 115 116 117
	0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,
	0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,
	0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0xFFFF,0x01FF};
#elif BN_BITS2 == 8
118
static const BN_ULONG _nist_p_192[] = {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
B
Bodo Möller 已提交
119 120
	0xFE,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
	0xFF,0xFF};
121
static const BN_ULONG _nist_p_224[] = {0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
B
Bodo Möller 已提交
122 123
	0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
	0xFF,0xFF,0xFF,0xFF,0xFF,0xFF};
124
static const BN_ULONG _nist_p_256[] = {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
B
Bodo Möller 已提交
125 126
	0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
	0x00,0x00,0x01,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF};
127
static const BN_ULONG _nist_p_384[] = {0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,
B
Bodo Möller 已提交
128 129 130
	0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0xFF,0xFF,0xFF,0xFF,
	0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
	0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF};
131
static const BN_ULONG _nist_p_521[] = {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
B
Bodo Möller 已提交
132 133 134 135 136 137 138 139 140
	0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
	0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
	0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
	0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
	0xFF,0x01};
#endif

const BIGNUM *BN_get0_nist_prime_192(void)
	{
141 142 143
	static BIGNUM const_nist_192 = { (BN_ULONG *)_nist_p_192,
		BN_NIST_192_TOP, BN_NIST_192_TOP, 0, BN_FLG_STATIC_DATA };
	return &const_nist_192;
B
Bodo Möller 已提交
144 145 146 147
	}

const BIGNUM *BN_get0_nist_prime_224(void)
	{
148 149 150
	static BIGNUM const_nist_224 = { (BN_ULONG *)_nist_p_224,
		BN_NIST_224_TOP, BN_NIST_224_TOP, 0, BN_FLG_STATIC_DATA };
	return &const_nist_224;
B
Bodo Möller 已提交
151 152 153 154
	}

const BIGNUM *BN_get0_nist_prime_256(void)
	{
155 156 157
	static BIGNUM const_nist_256 = { (BN_ULONG *)_nist_p_256,
		BN_NIST_256_TOP, BN_NIST_256_TOP, 0, BN_FLG_STATIC_DATA };
	return &const_nist_256;
B
Bodo Möller 已提交
158 159 160 161
	}

const BIGNUM *BN_get0_nist_prime_384(void)
	{
162 163 164
	static BIGNUM const_nist_384 = { (BN_ULONG *)_nist_p_384,
		BN_NIST_384_TOP, BN_NIST_384_TOP, 0, BN_FLG_STATIC_DATA };
	return &const_nist_384;
B
Bodo Möller 已提交
165 166 167 168
	}

const BIGNUM *BN_get0_nist_prime_521(void)
	{
169 170 171
	static BIGNUM const_nist_521 = { (BN_ULONG *)_nist_p_521,
		BN_NIST_521_TOP, BN_NIST_521_TOP, 0, BN_FLG_STATIC_DATA };
	return &const_nist_521;
B
Bodo Möller 已提交
172 173 174 175 176 177 178 179 180 181 182 183
	}

/* some misc internal functions */
static BN_ULONG _256_data[BN_NIST_256_TOP*6];
static int _is_set_256_data = 0;
static void _init_256_data(void);

static BN_ULONG _384_data[BN_NIST_384_TOP*8];
static int _is_set_384_data = 0;
static void _init_384_data(void);

#define BN_NIST_ADD_ONE(a)	while (!(++(*(a)))) ++(a);
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202

static void nist_cp_bn_0(BN_ULONG *buf, BN_ULONG *a, int top, int max)
        {
	int i;
        BN_ULONG *_tmp1 = (buf), *_tmp2 = (a);
        for (i = (top); i != 0; i--)
                *_tmp1++ = *_tmp2++;
        for (i = (max) - (top); i != 0; i--)
                *_tmp1++ = (BN_ULONG) 0;
        }

static void nist_cp_bn(BN_ULONG *buf, BN_ULONG *a, int top)
        { 
	int i;
        BN_ULONG *_tmp1 = (buf), *_tmp2 = (a);
        for (i = (top); i != 0; i--)
                *_tmp1++ = *_tmp2++;
        }

B
Bodo Möller 已提交
203
#if BN_BITS2 == 64
204 205 206 207 208
#define bn_cp_64(to, n, from, m)	(to)[n] = (from)[m];
#define bn_64_set_0(to, n)		(to)[n] = (BN_ULONG)0;
/* TBD */
#define bn_cp_32(to, n, from, m)	(to)[n] = (from)[m];
#define bn_32_set_0(to, n)		(to)[n] = (BN_ULONG)0;
B
Bodo Möller 已提交
209
#else
210 211 212 213 214 215 216 217 218 219 220 221 222
#define bn_cp_64(to, n, from, m) \
	{ \
	bn_cp_32(to, (n)*2, from, (m)*2); \
	bn_cp_32(to, (n)*2+1, from, (m)*2+1); \
	}
#define bn_64_set_0(to, n) \
	{ \
	bn_32_set_0(to, (n)*2); \
	bn_32_set_0(to, (n)*2+1); \
	}
#if BN_BITS2 == 32
#define bn_cp_32(to, n, from, m)	(to)[n] = (from)[m];
#define bn_32_set_0(to, n)		(to)[n] = (BN_ULONG)0;
B
Bodo Möller 已提交
223
#elif BN_BITS2 == 16
224 225 226 227 228 229
#define bn_cp_32(to, n, from, m) \
	{ \
	(to)[(n)*2]   = (from)[(m)*2];  \
	(to)[(n)*2+1] = (from)[(m)*2+1];\
	}
#define bn_32_set_0(to, n) { (to)[(n)*2] = 0; (to)[(n)*2+1] = 0; }
B
Bodo Möller 已提交
230
#elif BN_BITS2 == 8
231 232 233 234 235 236 237 238 239 240
#define bn_cp_32(to, n, from, m) \
	{ \
	(to)[(n)*4]   = (from)[(m)*4];  \
	(to)[(n)*4+1] = (from)[(m)*4+1];\
	(to)[(n)*4+2] = (from)[(m)*4+2];\
	(to)[(n)*4+3] = (from)[(m)*4+3];\
	}
#define bn_32_set_0(to, n) \
	{ (to)[(n)*4]   = (BN_ULONG)0; (to)[(n)*4+1] = (BN_ULONG)0; \
	  (to)[(n)*4+2] = (BN_ULONG)0; (to)[(n)*4+3] = (BN_ULONG)0; }
B
Bodo Möller 已提交
241
#endif
242
#endif /* BN_BITS2 != 64 */
B
Bodo Möller 已提交
243 244


245 246 247 248 249
#define nist_set_192(to, from, a1, a2, a3) \
	{ \
	if (a3 != 0) bn_cp_64(to, 0, from, (a3) - 3) else bn_64_set_0(to, 0)\
	bn_cp_64(to, 1, from, (a2) - 3) \
	if (a1 != 0) bn_cp_64(to, 2, from, (a1) - 3) else bn_64_set_0(to, 2)\
B
Bodo Möller 已提交
250 251 252 253 254
	}

int BN_nist_mod_192(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
	BN_CTX *ctx)
	{
255
	int      top = a->top, i;
B
Bodo Möller 已提交
256
	BN_ULONG carry = 0;
257 258 259
	register BN_ULONG *r_d, *a_d = a->d;
	BN_ULONG t_d[BN_NIST_192_TOP],
	         buf[BN_NIST_192_TOP];
B
Bodo Möller 已提交
260

261 262
	i = BN_ucmp(field, a);
	if (i == 0)
263 264 265 266
		{
		BN_zero(r);
		return 1;
		}
267 268
	else if (i > 0)
		return (r == a) ? 1 : (BN_copy(r ,a) != NULL);
B
Bodo Möller 已提交
269

270 271
	if (top == BN_NIST_192_TOP)
		return BN_usub(r, a, field);
B
Bodo Möller 已提交
272

273
	if (r != a)
B
Bodo Möller 已提交
274
		{
275 276 277 278
		if (!bn_wexpand(r, BN_NIST_192_TOP))
			return 0;
		r_d = r->d;
		nist_cp_bn(r_d, a_d, BN_NIST_192_TOP);
B
Bodo Möller 已提交
279
		}
280 281
	else
		r_d = a_d;
B
Bodo Möller 已提交
282

283 284
	nist_cp_bn_0(buf, a_d + BN_NIST_192_TOP, top - BN_NIST_192_TOP, BN_NIST_192_TOP);

285
#if defined(OPENSSL_SYS_VMS) && defined(__DECC)
R
Typo  
Richard Levitte 已提交
286
# pragma message save
287 288 289
# pragma message disable BADSUBSCRIPT
#endif

290
	nist_set_192(t_d, buf, 0, 3, 3);
B
Bodo Möller 已提交
291 292 293
	if (bn_add_words(r_d, r_d, t_d, BN_NIST_192_TOP))
		++carry;

294
	nist_set_192(t_d, buf, 4, 4, 0);
B
Bodo Möller 已提交
295 296 297
	if (bn_add_words(r_d, r_d, t_d, BN_NIST_192_TOP))
		++carry;

298
#if defined(OPENSSL_SYS_VMS) && defined(__DECC)
R
Typo  
Richard Levitte 已提交
299
# pragma message restore
300 301
#endif

302
	nist_set_192(t_d, buf, 5, 5, 5)
B
Bodo Möller 已提交
303 304 305 306 307 308 309 310 311
	if (bn_add_words(r_d, r_d, t_d, BN_NIST_192_TOP))
		++carry;

	while (carry)
		{
		if (bn_sub_words(r_d, r_d, _nist_p_192, BN_NIST_192_TOP))
			--carry; 
		}
	r->top = BN_NIST_192_TOP;
312
	bn_correct_top(r);
B
Bodo Möller 已提交
313 314 315
	if (BN_ucmp(r, field) >= 0)
		{
		bn_sub_words(r_d, r_d, _nist_p_192, BN_NIST_192_TOP);
316
		bn_correct_top(r);
B
Bodo Möller 已提交
317 318
		}

319
	bn_check_top(r);
B
Bodo Möller 已提交
320 321 322
	return 1;
	}

323 324 325 326 327 328 329 330 331
#define nist_set_224(to, from, a1, a2, a3, a4, a5, a6, a7) \
	{ \
	if (a7 != 0) bn_cp_32(to, 0, from, (a7) - 7) else bn_32_set_0(to, 0)\
	if (a6 != 0) bn_cp_32(to, 1, from, (a6) - 7) else bn_32_set_0(to, 1)\
	if (a5 != 0) bn_cp_32(to, 2, from, (a5) - 7) else bn_32_set_0(to, 2)\
	if (a4 != 0) bn_cp_32(to, 3, from, (a4) - 7) else bn_32_set_0(to, 3)\
	if (a3 != 0) bn_cp_32(to, 4, from, (a3) - 7) else bn_32_set_0(to, 4)\
	if (a2 != 0) bn_cp_32(to, 5, from, (a2) - 7) else bn_32_set_0(to, 5)\
	if (a1 != 0) bn_cp_32(to, 6, from, (a1) - 7) else bn_32_set_0(to, 6)\
B
Bodo Möller 已提交
332 333 334 335 336
	}

int BN_nist_mod_224(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
	BN_CTX *ctx)
	{
337 338
#if BN_BITS2 != 64
	int	top = a->top, i;
B
Bodo Möller 已提交
339
	int	carry = 0;
340 341 342 343 344 345
	BN_ULONG *r_d, *a_d = a->d;
	BN_ULONG t_d[BN_NIST_224_TOP],
	         buf[BN_NIST_224_TOP];

	i = BN_ucmp(field, a);
	if (i == 0)
346 347 348 349
		{
		BN_zero(r);
		return 1;
		}
350
	else if (i > 0)
B
Bodo Möller 已提交
351
		return (r == a)? 1 : (BN_copy(r ,a) != NULL);
B
Bodo Möller 已提交
352

353 354
	if (top == BN_NIST_224_TOP)
		return BN_usub(r, a, field);
B
Bodo Möller 已提交
355

356
	if (r != a)
B
Bodo Möller 已提交
357
		{
358 359 360 361
		if (!bn_wexpand(r, BN_NIST_224_TOP))
			return 0;
		r_d = r->d;
		nist_cp_bn(r_d, a_d, BN_NIST_224_TOP);
B
Bodo Möller 已提交
362
		}
363 364
	else
		r_d = a_d;
B
Bodo Möller 已提交
365

366 367 368
	nist_cp_bn_0(buf, a_d + BN_NIST_224_TOP, top - BN_NIST_224_TOP, BN_NIST_224_TOP);

	nist_set_224(t_d, buf, 10, 9, 8, 7, 0, 0, 0);
B
Bodo Möller 已提交
369 370
	if (bn_add_words(r_d, r_d, t_d, BN_NIST_224_TOP))
		++carry;
371
	nist_set_224(t_d, buf, 0, 13, 12, 11, 0, 0, 0);
B
Bodo Möller 已提交
372 373
	if (bn_add_words(r_d, r_d, t_d, BN_NIST_224_TOP))
		++carry;
374
	nist_set_224(t_d, buf, 13, 12, 11, 10, 9, 8, 7);
B
Bodo Möller 已提交
375 376
	if (bn_sub_words(r_d, r_d, t_d, BN_NIST_224_TOP))
		--carry;
377
	nist_set_224(t_d, buf, 0, 0, 0, 0, 13, 12, 11);
B
Bodo Möller 已提交
378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394
	if (bn_sub_words(r_d, r_d, t_d, BN_NIST_224_TOP))
		--carry;

	if (carry > 0)
		while (carry)
			{
			if (bn_sub_words(r_d,r_d,_nist_p_224,BN_NIST_224_TOP))
				--carry;
			}
	else if (carry < 0)
		while (carry)
			{
			if (bn_add_words(r_d,r_d,_nist_p_224,BN_NIST_224_TOP))
				++carry;
			}

	r->top = BN_NIST_224_TOP;
395
	bn_correct_top(r);
B
Bodo Möller 已提交
396 397 398
	if (BN_ucmp(r, field) >= 0)
		{
		bn_sub_words(r_d, r_d, _nist_p_224, BN_NIST_224_TOP);
399
		bn_correct_top(r);
B
Bodo Möller 已提交
400
		}
401
	bn_check_top(r);
B
Bodo Möller 已提交
402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425
	return 1;
#else
	return 0;
#endif
	}

static void _init_256_data(void)
	{
	int	i;
	BN_ULONG *tmp1 = _256_data;
	const BN_ULONG *tmp2 = tmp1;

	memcpy(tmp1, _nist_p_256, BN_NIST_256_TOP * sizeof(BN_ULONG));
	tmp1 += BN_NIST_256_TOP;

	for (i=0; i<5; i++)
		{
		bn_add_words(tmp1, _nist_p_256, tmp2, BN_NIST_256_TOP);
		tmp2  = tmp1;
		tmp1 += BN_NIST_256_TOP;
		}
	_is_set_256_data = 1;
	}

426 427 428 429 430 431 432 433 434 435
#define nist_set_256(to, from, a1, a2, a3, a4, a5, a6, a7, a8) \
	{ \
	if (a8 != 0) bn_cp_32(to, 0, from, (a8) - 8) else bn_32_set_0(to, 0)\
	if (a7 != 0) bn_cp_32(to, 1, from, (a7) - 8) else bn_32_set_0(to, 1)\
	if (a6 != 0) bn_cp_32(to, 2, from, (a6) - 8) else bn_32_set_0(to, 2)\
	if (a5 != 0) bn_cp_32(to, 3, from, (a5) - 8) else bn_32_set_0(to, 3)\
	if (a4 != 0) bn_cp_32(to, 4, from, (a4) - 8) else bn_32_set_0(to, 4)\
	if (a3 != 0) bn_cp_32(to, 5, from, (a3) - 8) else bn_32_set_0(to, 5)\
	if (a2 != 0) bn_cp_32(to, 6, from, (a2) - 8) else bn_32_set_0(to, 6)\
	if (a1 != 0) bn_cp_32(to, 7, from, (a1) - 8) else bn_32_set_0(to, 7)\
B
Bodo Möller 已提交
436 437 438 439 440
	}

int BN_nist_mod_256(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
	BN_CTX *ctx)
	{
441 442
#if BN_BITS2 != 64
	int	i, top = a->top;
B
Bodo Möller 已提交
443
	int	carry = 0;
444 445 446 447
	register BN_ULONG *a_d = a->d, *r_d;
	BN_ULONG t_d[BN_NIST_256_TOP],
	         t_d2[BN_NIST_256_TOP],
	         buf[BN_NIST_256_TOP];
B
Bodo Möller 已提交
448 449

	if (!_is_set_256_data)
B
Bodo Möller 已提交
450 451 452 453 454 455 456 457 458
		{
		CRYPTO_w_lock(CRYPTO_LOCK_BN);
		
		if (!_is_set_256_data)
			_init_256_data();
		
		CRYPTO_w_unlock(CRYPTO_LOCK_BN);
		}
	
459 460
	i = BN_ucmp(field, a);
	if (i == 0)
461 462 463 464
		{
		BN_zero(r);
		return 1;
		}
465
	else if (i > 0)
B
Bodo Möller 已提交
466
		return (r == a)? 1 : (BN_copy(r ,a) != NULL);
B
Bodo Möller 已提交
467

468 469
	if (top == BN_NIST_256_TOP)
		return BN_usub(r, a, field);
B
Bodo Möller 已提交
470

471
	if (r != a)
B
Bodo Möller 已提交
472
		{
473 474 475 476
		if (!bn_wexpand(r, BN_NIST_256_TOP))
			return 0;
		r_d = r->d;
		nist_cp_bn(r_d, a_d, BN_NIST_256_TOP);
B
Bodo Möller 已提交
477
		}
478 479 480 481
	else
		r_d = a_d;

	nist_cp_bn_0(buf, a_d + BN_NIST_256_TOP, top - BN_NIST_256_TOP, BN_NIST_256_TOP);
B
Bodo Möller 已提交
482 483

	/*S1*/
484
	nist_set_256(t_d, buf, 15, 14, 13, 12, 11, 0, 0, 0);
B
Bodo Möller 已提交
485
	/*S2*/
486
	nist_set_256(t_d2,buf, 0, 15, 14, 13, 12, 0, 0, 0);
B
Bodo Möller 已提交
487 488 489 490 491 492 493
	if (bn_add_words(t_d, t_d, t_d2, BN_NIST_256_TOP))
		carry = 2;
	/* left shift */
		{
		register BN_ULONG *ap,t,c;
		ap = t_d;
		c=0;
494
		for (i = BN_NIST_256_TOP; i != 0; --i)
B
Bodo Möller 已提交
495 496 497 498 499 500 501 502 503 504 505 506
			{
			t= *ap;
			*(ap++)=((t<<1)|c)&BN_MASK2;
			c=(t & BN_TBIT)?1:0;
			}
		if (c)
			++carry;
		}

	if (bn_add_words(r_d, r_d, t_d, BN_NIST_256_TOP))
		++carry;
	/*S3*/
507
	nist_set_256(t_d, buf, 15, 14, 0, 0, 0, 10, 9, 8);
B
Bodo Möller 已提交
508 509 510
	if (bn_add_words(r_d, r_d, t_d, BN_NIST_256_TOP))
		++carry;
	/*S4*/
511
	nist_set_256(t_d, buf, 8, 13, 15, 14, 13, 11, 10, 9);
B
Bodo Möller 已提交
512 513 514
	if (bn_add_words(r_d, r_d, t_d, BN_NIST_256_TOP))
		++carry;
	/*D1*/
515
	nist_set_256(t_d, buf, 10, 8, 0, 0, 0, 13, 12, 11);
B
Bodo Möller 已提交
516 517 518
	if (bn_sub_words(r_d, r_d, t_d, BN_NIST_256_TOP))
		--carry;
	/*D2*/
519
	nist_set_256(t_d, buf, 11, 9, 0, 0, 15, 14, 13, 12);
B
Bodo Möller 已提交
520 521 522
	if (bn_sub_words(r_d, r_d, t_d, BN_NIST_256_TOP))
		--carry;
	/*D3*/
523
	nist_set_256(t_d, buf, 12, 0, 10, 9, 8, 15, 14, 13);
B
Bodo Möller 已提交
524 525 526
	if (bn_sub_words(r_d, r_d, t_d, BN_NIST_256_TOP))
		--carry;
	/*D4*/
527
	nist_set_256(t_d, buf, 13, 0, 11, 10, 9, 0, 15, 14);
B
Bodo Möller 已提交
528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544
	if (bn_sub_words(r_d, r_d, t_d, BN_NIST_256_TOP))
		--carry;
	
	if (carry)
		{
		if (carry > 0)
			bn_sub_words(r_d, r_d, _256_data + BN_NIST_256_TOP *
				--carry, BN_NIST_256_TOP);
		else
			{
			carry = -carry;
			bn_add_words(r_d, r_d, _256_data + BN_NIST_256_TOP *
				--carry, BN_NIST_256_TOP);
			}
		}

	r->top = BN_NIST_256_TOP;
545
	bn_correct_top(r);
B
Bodo Möller 已提交
546 547 548
	if (BN_ucmp(r, field) >= 0)
		{
		bn_sub_words(r_d, r_d, _nist_p_256, BN_NIST_256_TOP);
549
		bn_correct_top(r);
B
Bodo Möller 已提交
550
		}
551
	bn_check_top(r);
B
Bodo Möller 已提交
552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575
	return 1;
#else
	return 0;
#endif
	}

static void _init_384_data(void)
	{
	int	i;
	BN_ULONG *tmp1 = _384_data;
	const BN_ULONG *tmp2 = tmp1;

	memcpy(tmp1, _nist_p_384, BN_NIST_384_TOP * sizeof(BN_ULONG));
	tmp1 += BN_NIST_384_TOP;

	for (i=0; i<7; i++)
		{
		bn_add_words(tmp1, _nist_p_384, tmp2, BN_NIST_384_TOP);
		tmp2  = tmp1;
		tmp1 += BN_NIST_384_TOP;
		}
	_is_set_384_data = 1;
	}

576 577 578 579 580 581 582 583 584 585 586 587 588 589
#define nist_set_384(to,from,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12) \
	{ \
	if (a12 != 0) bn_cp_32(to, 0, from,  (a12) - 12) else bn_32_set_0(to, 0)\
	if (a11 != 0) bn_cp_32(to, 1, from,  (a11) - 12) else bn_32_set_0(to, 1)\
	if (a10 != 0) bn_cp_32(to, 2, from,  (a10) - 12) else bn_32_set_0(to, 2)\
	if (a9 != 0)  bn_cp_32(to, 3, from,  (a9) - 12)  else bn_32_set_0(to, 3)\
	if (a8 != 0)  bn_cp_32(to, 4, from,  (a8) - 12)  else bn_32_set_0(to, 4)\
	if (a7 != 0)  bn_cp_32(to, 5, from,  (a7) - 12)  else bn_32_set_0(to, 5)\
	if (a6 != 0)  bn_cp_32(to, 6, from,  (a6) - 12)  else bn_32_set_0(to, 6)\
	if (a5 != 0)  bn_cp_32(to, 7, from,  (a5) - 12)  else bn_32_set_0(to, 7)\
	if (a4 != 0)  bn_cp_32(to, 8, from,  (a4) - 12)  else bn_32_set_0(to, 8)\
	if (a3 != 0)  bn_cp_32(to, 9, from,  (a3) - 12)  else bn_32_set_0(to, 9)\
	if (a2 != 0)  bn_cp_32(to, 10, from, (a2) - 12)  else bn_32_set_0(to, 10)\
	if (a1 != 0)  bn_cp_32(to, 11, from, (a1) - 12)  else bn_32_set_0(to, 11)\
B
Bodo Möller 已提交
590 591 592 593 594
	}

int BN_nist_mod_384(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
	BN_CTX *ctx)
	{
595 596
#if BN_BITS2 != 64
	int	i, top = a->top;
B
Bodo Möller 已提交
597
	int	carry = 0;
598 599 600
	register BN_ULONG *r_d, *a_d = a->d;
	BN_ULONG t_d[BN_NIST_384_TOP],
	         buf[BN_NIST_384_TOP];
B
Bodo Möller 已提交
601 602

	if (!_is_set_384_data)
B
Bodo Möller 已提交
603 604 605 606 607 608 609 610
		{
		CRYPTO_w_lock(CRYPTO_LOCK_BN);
		
		if (!_is_set_384_data)
			_init_384_data();

		CRYPTO_w_unlock(CRYPTO_LOCK_BN);
		}
B
Bodo Möller 已提交
611

612 613
	i = BN_ucmp(field, a);
	if (i == 0)
614 615 616 617
		{
		BN_zero(r);
		return 1;
		}
618
	else if (i > 0)
B
Bodo Möller 已提交
619
		return (r == a)? 1 : (BN_copy(r ,a) != NULL);
B
Bodo Möller 已提交
620

621 622
	if (top == BN_NIST_384_TOP)
		return BN_usub(r, a, field);
B
Bodo Möller 已提交
623

624
	if (r != a)
B
Bodo Möller 已提交
625
		{
626 627 628 629
		if (!bn_wexpand(r, BN_NIST_384_TOP))
			return 0;
		r_d = r->d;
		nist_cp_bn(r_d, a_d, BN_NIST_384_TOP);
B
Bodo Möller 已提交
630
		}
631 632 633 634
	else
		r_d = a_d;

	nist_cp_bn_0(buf, a_d + BN_NIST_384_TOP, top - BN_NIST_384_TOP, BN_NIST_384_TOP);
B
Bodo Möller 已提交
635 636

	/*S1*/
637
	nist_set_256(t_d, buf, 0, 0, 0, 0, 0, 23-4, 22-4, 21-4);
B
Bodo Möller 已提交
638 639 640 641 642
		/* left shift */
		{
		register BN_ULONG *ap,t,c;
		ap = t_d;
		c=0;
643
		for (i = BN_NIST_256_TOP; i != 0; --i)
B
Bodo Möller 已提交
644 645 646 647 648 649 650 651 652
			{
			t= *ap;
			*(ap++)=((t<<1)|c)&BN_MASK2;
			c=(t & BN_TBIT)?1:0;
			}
		}
	if (bn_add_words(r_d+(128/BN_BITS2), r_d+(128/BN_BITS2), 
		t_d, BN_NIST_256_TOP))
		++carry;
653 654
	/*S2 */
	if (bn_add_words(r_d, r_d, buf, BN_NIST_384_TOP))
B
Bodo Möller 已提交
655 656
		++carry;
	/*S3*/
657
	nist_set_384(t_d,buf,20,19,18,17,16,15,14,13,12,23,22,21);
B
Bodo Möller 已提交
658 659 660
	if (bn_add_words(r_d, r_d, t_d, BN_NIST_384_TOP))
		++carry;
	/*S4*/
661
	nist_set_384(t_d,buf,19,18,17,16,15,14,13,12,20,0,23,0);
B
Bodo Möller 已提交
662 663 664
	if (bn_add_words(r_d, r_d, t_d, BN_NIST_384_TOP))
		++carry;
	/*S5*/
665
	nist_set_256(t_d, buf, 0, 0, 0, 0, 23-4, 22-4, 21-4, 20-4);
B
Bodo Möller 已提交
666 667 668 669
	if (bn_add_words(r_d+(128/BN_BITS2), r_d+(128/BN_BITS2), 
		t_d, BN_NIST_256_TOP))
		++carry;
	/*S6*/
670
	nist_set_384(t_d,buf,0,0,0,0,0,0,23,22,21,0,0,20);
B
Bodo Möller 已提交
671 672 673
	if (bn_add_words(r_d, r_d, t_d, BN_NIST_384_TOP))
		++carry;
	/*D1*/
674
	nist_set_384(t_d,buf,22,21,20,19,18,17,16,15,14,13,12,23);
B
Bodo Möller 已提交
675 676 677
	if (bn_sub_words(r_d, r_d, t_d, BN_NIST_384_TOP))
		--carry;
	/*D2*/
678
	nist_set_384(t_d,buf,0,0,0,0,0,0,0,23,22,21,20,0);
B
Bodo Möller 已提交
679 680 681
	if (bn_sub_words(r_d, r_d, t_d, BN_NIST_384_TOP))
		--carry;
	/*D3*/
682
	nist_set_384(t_d,buf,0,0,0,0,0,0,0,23,23,0,0,0);
B
Bodo Möller 已提交
683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699
	if (bn_sub_words(r_d, r_d, t_d, BN_NIST_384_TOP))
		--carry;
	
	if (carry)
		{
		if (carry > 0)
			bn_sub_words(r_d, r_d, _384_data + BN_NIST_384_TOP *
				--carry, BN_NIST_384_TOP);
		else
			{
			carry = -carry;
			bn_add_words(r_d, r_d, _384_data + BN_NIST_384_TOP *
				--carry, BN_NIST_384_TOP);
			}
		}

	r->top = BN_NIST_384_TOP;
700
	bn_correct_top(r);
B
Bodo Möller 已提交
701 702 703
	if (BN_ucmp(r, field) >= 0)
		{
		bn_sub_words(r_d, r_d, _nist_p_384, BN_NIST_384_TOP);
704
		bn_correct_top(r);
B
Bodo Möller 已提交
705
		}
706
	bn_check_top(r);
B
Bodo Möller 已提交
707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732
	return 1;
#else
	return 0;
#endif
	}

int BN_nist_mod_521(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
	BN_CTX *ctx)
	{
#if BN_BITS2 == 64
#define BN_NIST_521_TOP_MASK	(BN_ULONG)0x1FF
#elif BN_BITS2 == 32
#define BN_NIST_521_TOP_MASK	(BN_ULONG)0x1FF
#elif BN_BITS2 == 16
#define BN_NIST_521_TOP_MASK	(BN_ULONG)0x1FF
#elif BN_BITS2 == 8
#define BN_NIST_521_TOP_MASK	(BN_ULONG)0x1
#endif
	int	top, ret = 0;
	BN_ULONG *r_d;
	BIGNUM	*tmp;

	/* check whether a reduction is necessary */
	top = a->top;
	if (top < BN_NIST_521_TOP  || ( top == BN_NIST_521_TOP &&
           (!(a->d[BN_NIST_521_TOP-1] & ~(BN_NIST_521_TOP_MASK)))))
B
Bodo Möller 已提交
733
		return (r == a)? 1 : (BN_copy(r ,a) != NULL);
B
Bodo Möller 已提交
734 735 736 737 738 739

	BN_CTX_start(ctx);
	tmp = BN_CTX_get(ctx);
	if (!tmp)
		goto err;

740 741 742
	if (!bn_wexpand(tmp, BN_NIST_521_TOP))
		goto err;
	nist_cp_bn(tmp->d, a->d, BN_NIST_521_TOP);
B
Bodo Möller 已提交
743

744 745
	tmp->top = BN_NIST_521_TOP;
        tmp->d[BN_NIST_521_TOP-1]  &= BN_NIST_521_TOP_MASK;
746
	bn_correct_top(tmp);
747 748 749 750

	if (!BN_rshift(r, a, 521))
		goto err;

B
Bodo Möller 已提交
751
	if (!BN_uadd(r, tmp, r))
752
		goto err;
B
Bodo Möller 已提交
753 754 755 756 757 758 759 760
	top = r->top;
	r_d = r->d;
	if (top == BN_NIST_521_TOP  && 
           (r_d[BN_NIST_521_TOP-1] & ~(BN_NIST_521_TOP_MASK)))
		{
		BN_NIST_ADD_ONE(r_d)
		r_d[BN_NIST_521_TOP-1] &= BN_NIST_521_TOP_MASK; 
		}
761
	bn_correct_top(r);
B
Bodo Möller 已提交
762 763 764 765

	ret = 1;
err:
	BN_CTX_end(ctx);
766

767
	bn_check_top(r);
B
Bodo Möller 已提交
768 769
	return ret;
	}