bn_nist.c 24.3 KB
Newer Older
U
Ulf Möller 已提交
1
/* crypto/bn/bn_nist.c */
B
Bodo Möller 已提交
2 3 4 5 6 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
/* ====================================================================
 * Copyright (c) 1998-2002 The OpenSSL Project.  All rights reserved.
 *
 * 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 已提交
57
#include "cryptlib.h"
B
Bodo Möller 已提交
58 59 60 61

#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 已提交
62
#define BN_NIST_384_TOP	(384+BN_BITS2-1)/BN_BITS2
B
Bodo Möller 已提交
63 64 65
#define BN_NIST_521_TOP	(521+BN_BITS2-1)/BN_BITS2

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

const BIGNUM *BN_get0_nist_prime_192(void)
	{
138 139 140
	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 已提交
141 142 143 144
	}

const BIGNUM *BN_get0_nist_prime_224(void)
	{
145 146 147
	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 已提交
148 149 150 151
	}

const BIGNUM *BN_get0_nist_prime_256(void)
	{
152 153 154
	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 已提交
155 156 157 158
	}

const BIGNUM *BN_get0_nist_prime_384(void)
	{
159 160 161
	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 已提交
162 163 164 165
	}

const BIGNUM *BN_get0_nist_prime_521(void)
	{
166 167 168
	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 已提交
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321
	}

/* 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);
#define __buf_0			(BN_ULONG)0
#define __buf_0_1		(BN_ULONG)0
#define __buf_0_2		(BN_ULONG)0
#if BN_BITS2 == 64
#define BN_64_BIT_BUF(n)	BN_ULONG __buf_##n = (BN_ULONG)0;
#define BN_CP_64_TO_BUF(n)	__buf_##n = (a)[(n)];
#define BN_CP_64_FROM_BUF(a,n)	*(a)++ = __buf_##n;
#define BN_CASE_64_BIT(n,a)	case (n): __buf_##n = (a)[(n)];
#if	UINT_MAX == 4294967295UL
#define	nist32	unsigned int
#define BN_32_BIT_BUF(n)	nist32 __buf_##n = (nist32)0;
#define BN_CP_32_TO_BUF(n)	__buf_##n = ((nist32 *)(a))[(n)];
#define BN_CP_32_FROM_BUF(a,n)	*((nist32)(a))++ = __buf_##n;
#define BN_CASE_32_BIT(n,a)	case (n): __buf_##n = ((nist32)(a))[(n)];
#elif	ULONG_MAX == 4294967295UL
#define	nist32	unsigned long
#define BN_32_BIT_BUF(n)	nist32 __buf_##n = (nist32)0;
#define BN_CP_32_TO_BUF(n)	__buf_##n = ((nist32 *)(a))[(n)];
#define BN_CP_32_FROM_BUF(a,n)	*((nist32)(a))++ = __buf_##n;
#define BN_CASE_32_BIT(n,a)	case (n): __buf_##n = ((nist32)(a))[(n)];
#else
#define	NO_32_BIT_TYPE
#endif
#elif BN_BITS2 == 32
#define BN_64_BIT_BUF(n)	BN_ULONG __buf_##n##_1 = (BN_ULONG)0;\
				BN_ULONG __buf_##n##_2 = (BN_ULONG)0;
#define BN_CP_64_TO_BUF(n)	__buf_##n##_2 = (a)[2*(n)+1];\
				__buf_##n##_1 = (a)[2*(n)];
#define BN_CP_64_FROM_BUF(a,n)	*(a)++ = __buf_##n##_1;\
				*(a)++ = __buf_##n##_2;
#define BN_CASE_64_BIT(n,a)	case 2*(n)+1: __buf_##n##_2 = (a)[2*(n)+1];\
				case 2*(n):   __buf_##n##_1 = (a)[2*(n)];
				
#define BN_32_BIT_BUF(n)	BN_ULONG __buf_##n = (BN_ULONG)0;
#define BN_CP_32_TO_BUF(n)	__buf_##n = (a)[(n)];
#define BN_CP_32_FROM_BUF(a,n)	*(a)++ = __buf_##n;
#define BN_CASE_32_BIT(n,a)	case (n): __buf_##n = (a)[(n)];
#elif BN_BITS2 == 16
#define __buf_0_3		(BN_ULONG)0
#define __buf_0_4		(BN_ULONG)0
#define BN_64_BIT_BUF(n)	BN_ULONG __buf_##n##_1 = (BN_ULONG)0;\
				BN_ULONG __buf_##n##_2 = (BN_ULONG)0;\
				BN_ULONG __buf_##n##_3 = (BN_ULONG)0;\
				BN_ULONG __buf_##n##_4 = (BN_ULONG)0;
#define BN_CP_64_TO_BUF(n)	__buf_##n##_4 = (a)[4*(n)+3];\
				__buf_##n##_3 = (a)[4*(n)+2];\
				__buf_##n##_2 = (a)[4*(n)+1];\
				__buf_##n##_1 = (a)[4*(n)];
#define BN_CP_64_FROM_BUF(a,n)	*(a)++ = __buf_##n##_1;\
				*(a)++ = __buf_##n##_2;\
				*(a)++ = __buf_##n##_3;\
				*(a)++ = __buf_##n##_4;
#define BN_CASE_64_BIT(n,a)	case 4*(n)+3: __buf_##n##_4 = (a)[4*(n)+3];\
				case 4*(n)+2: __buf_##n##_3 = (a)[4*(n)+2];\
				case 4*(n)+1: __buf_##n##_2 = (a)[4*(n)+1];\
				case 4*(n):   __buf_##n##_1 = (a)[4*(n)];
#define BN_32_BIT_BUF(n)	BN_ULONG __buf_##n##_1 = (BN_ULONG)0;\
				BN_ULONG __buf_##n##_2 = (BN_ULONG)0;
#define BN_CP_32_TO_BUF(n)	__buf_##n##_1 = (a)[2*(n)];\
				__buf_##n##_2 = (a)[2*(n)+1];
#define BN_CP_32_FROM_BUF(a,n)	*(a)++ = __buf_##n##_1;\
				*(a)++ = __buf_##n##_2;
#define BN_CASE_32_BIT(n,a)	case 2*(n)+1: __buf_##n##_2 = (a)[2*(n)+1];\
				case 2*(n):   __buf_##n##_1 = (a)[2*(n)];
#elif BN_BITS2 == 8
#define __buf_0_3		(BN_ULONG)0
#define __buf_0_4		(BN_ULONG)0
#define __buf_0_5		(BN_ULONG)0
#define __buf_0_6		(BN_ULONG)0
#define __buf_0_7		(BN_ULONG)0
#define __buf_0_8		(BN_ULONG)0
#define BN_64_BIT_BUF(n)	BN_ULONG __buf_##n##_1 = (BN_ULONG)0;\
				BN_ULONG __buf_##n##_2 = (BN_ULONG)0;\
				BN_ULONG __buf_##n##_3 = (BN_ULONG)0;\
				BN_ULONG __buf_##n##_4 = (BN_ULONG)0;\
				BN_ULONG __buf_##n##_5 = (BN_ULONG)0;\
				BN_ULONG __buf_##n##_6 = (BN_ULONG)0;\
				BN_ULONG __buf_##n##_7 = (BN_ULONG)0;\
				BN_ULONG __buf_##n##_8 = (BN_ULONG)0;
#define BN_CP_64_TO_BUF(n)	__buf_##n##_8 = (a)[8*(n)+7];\
				__buf_##n##_7 = (a)[8*(n)+6];\
				__buf_##n##_6 = (a)[8*(n)+5];\
				__buf_##n##_5 = (a)[8*(n)+4];\
				__buf_##n##_4 = (a)[8*(n)+3];\
				__buf_##n##_3 = (a)[8*(n)+2];\
				__buf_##n##_2 = (a)[8*(n)+1];\
				__buf_##n##_1 = (a)[8*(n)];
#define BN_CP_64_FROM_BUF(a,n)	*(a)++ = __buf_##n##_1;\
				*(a)++ = __buf_##n##_2;\
				*(a)++ = __buf_##n##_3;\
				*(a)++ = __buf_##n##_4;\
				*(a)++ = __buf_##n##_5;\
				*(a)++ = __buf_##n##_6;\
				*(a)++ = __buf_##n##_7;\
				*(a)++ = __buf_##n##_8;
#define BN_CASE_64_BIT(n,a)	case 8*(n)+7: __buf_##n##_8 = (a)[8*(n)+7];\
				case 8*(n)+6: __buf_##n##_7 = (a)[8*(n)+6];\
				case 8*(n)+5: __buf_##n##_6 = (a)[8*(n)+5];\
				case 8*(n)+4: __buf_##n##_5 = (a)[8*(n)+4];\
				case 8*(n)+3: __buf_##n##_4 = (a)[8*(n)+3];\
				case 8*(n)+2: __buf_##n##_3 = (a)[8*(n)+2];\
				case 8*(n)+1: __buf_##n##_2 = (a)[8*(n)+1];\
				case 8*(n):   __buf_##n##_1 = (a)[8*(n)];
#define BN_32_BIT_BUF(n)	BN_ULONG __buf_##n##_1 = (BN_ULONG)0;\
				BN_ULONG __buf_##n##_2 = (BN_ULONG)0;\
				BN_ULONG __buf_##n##_3 = (BN_ULONG)0;\
				BN_ULONG __buf_##n##_4 = (BN_ULONG)0;
#define BN_CP_32_TO_BUF(n)	__buf_##n##_1 = (a)[4*(n)];\
				__buf_##n##_2 = (a)[4*(n)+1];\
				__buf_##n##_3 = (a)[4*(n)+2];\
				__buf_##n##_4 = (a)[4*(n)+3];
#define BN_CP_32_FROM_BUF(a,n)	*(a)++ = __buf_##n##_1;\
				*(a)++ = __buf_##n##_2;\
				*(a)++ = __buf_##n##_3;\
				*(a)++ = __buf_##n##_4;
#define BN_CASE_32_BIT(n,a)	case 4*(n)+3: __buf_##n##_4 = (a)[4*(n)+3];\
				case 4*(n)+2: __buf_##n##_3 = (a)[4*(n)+2];\
				case 4*(n)+1: __buf_##n##_2 = (a)[4*(n)+1];\
				case 4*(n):   __buf_##n##_1 = (a)[4*(n)];
#endif


#define BN_192_SET(d,a1,a2,a3) \
	{\
	register BN_ULONG *td = (d);\
	BN_CP_64_FROM_BUF(td,a3); BN_CP_64_FROM_BUF(td,a2);\
	BN_CP_64_FROM_BUF(td,a1);\
	}

int BN_nist_mod_192(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
	BN_CTX *ctx)
	{
	int      top;
	BN_ULONG carry = 0;
	register BN_ULONG *r_d, *a_d;
	BN_ULONG t_d[BN_NIST_192_TOP];
	BN_64_BIT_BUF(3)  BN_64_BIT_BUF(4)
	BN_64_BIT_BUF(5)

	top = BN_ucmp(field, a);
	if (top == 0)
322 323 324 325
		{
		BN_zero(r);
		return 1;
		}
B
Bodo Möller 已提交
326
	else if (top > 0)
B
Bodo Möller 已提交
327
		return (r == a)? 1 : (BN_copy(r ,a) != NULL);
B
Bodo Möller 已提交
328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364

	if (r != a)
		if (!BN_ncopy(r, a, BN_NIST_192_TOP))
			return 0;

	r_d = r->d;
	a_d = a->d;
	top = a->top-1;

	switch (top)
		{
		BN_CASE_64_BIT(5, a_d)
		BN_CASE_64_BIT(4, a_d)
		BN_CASE_64_BIT(3, a_d)
			break;
		default: /* a->top == field->top */
			return BN_usub(r, a, field);
		}

	BN_192_SET(t_d,0,3,3)
	if (bn_add_words(r_d, r_d, t_d, BN_NIST_192_TOP))
		++carry;

	BN_192_SET(t_d,4,4,0)
	if (bn_add_words(r_d, r_d, t_d, BN_NIST_192_TOP))
		++carry;

	BN_192_SET(t_d,5,5,5)
	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;
365
	bn_correct_top(r);
B
Bodo Möller 已提交
366 367 368
	if (BN_ucmp(r, field) >= 0)
		{
		bn_sub_words(r_d, r_d, _nist_p_192, BN_NIST_192_TOP);
369
		bn_correct_top(r);
B
Bodo Möller 已提交
370 371
		}

372
	bn_check_top(r);
B
Bodo Möller 已提交
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399
	return 1;
	}

#define BN_224_SET(d,a1,a2,a3,a4,a5,a6,a7) \
	{\
	register BN_ULONG *td = (d);\
	BN_CP_32_FROM_BUF(td,a7); BN_CP_32_FROM_BUF(td,a6);\
	BN_CP_32_FROM_BUF(td,a5); BN_CP_32_FROM_BUF(td,a4);\
	BN_CP_32_FROM_BUF(td,a3); BN_CP_32_FROM_BUF(td,a2);\
	BN_CP_32_FROM_BUF(td,a1);\
	}

int BN_nist_mod_224(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
	BN_CTX *ctx)
	{
#ifndef NO_32_BIT_TYPE
	int	tmp_int;
	int	carry = 0;
	BN_ULONG *r_d, *a_d;
	BN_ULONG t_d[BN_NIST_224_TOP];
	BN_32_BIT_BUF(7)  BN_32_BIT_BUF(8)
	BN_32_BIT_BUF(9)  BN_32_BIT_BUF(10)
	BN_32_BIT_BUF(11) BN_32_BIT_BUF(12)
	BN_32_BIT_BUF(13)

	tmp_int = BN_ucmp(field, a);
	if (tmp_int == 0)
400 401 402 403
		{
		BN_zero(r);
		return 1;
		}
B
Bodo Möller 已提交
404
	else if (tmp_int > 0)
B
Bodo Möller 已提交
405
		return (r == a)? 1 : (BN_copy(r ,a) != NULL);
B
Bodo Möller 已提交
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456

	if (r != a)
		if (!BN_ncopy(r, a, BN_NIST_224_TOP))
			return 0;

	r_d = r->d;
	a_d = a->d;

	tmp_int = a->top-1;

	switch (tmp_int)
		{
		BN_CASE_32_BIT(13, a_d)
		BN_CASE_32_BIT(12, a_d)
		BN_CASE_32_BIT(11, a_d)
		BN_CASE_32_BIT(10, a_d)
		BN_CASE_32_BIT(9,  a_d)
		BN_CASE_32_BIT(8,  a_d)
		BN_CASE_32_BIT(7,  a_d)
			break;
		default: /* a->top == field->top */
			return BN_usub(r, a, field);
		}

	BN_224_SET(t_d,10,9,8,7,0,0,0)
	if (bn_add_words(r_d, r_d, t_d, BN_NIST_224_TOP))
		++carry;
	BN_224_SET(t_d,0,13,12,11,0,0,0)
	if (bn_add_words(r_d, r_d, t_d, BN_NIST_224_TOP))
		++carry;
	BN_224_SET(t_d,13,12,11,10,9,8,7)
	if (bn_sub_words(r_d, r_d, t_d, BN_NIST_224_TOP))
		--carry;
	BN_224_SET(t_d,0,0,0,0,13,12,11)
	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;
457
	bn_correct_top(r);
B
Bodo Möller 已提交
458 459 460
	if (BN_ucmp(r, field) >= 0)
		{
		bn_sub_words(r_d, r_d, _nist_p_224, BN_NIST_224_TOP);
461
		bn_correct_top(r);
B
Bodo Möller 已提交
462
		}
463
	bn_check_top(r);
B
Bodo Möller 已提交
464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511
	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;
	}

#define BN_256_SET(d,a1,a2,a3,a4,a5,a6,a7,a8) \
	{\
	register BN_ULONG *td = (d);\
	BN_CP_32_FROM_BUF(td,a8); BN_CP_32_FROM_BUF(td,a7);\
	BN_CP_32_FROM_BUF(td,a6); BN_CP_32_FROM_BUF(td,a5);\
	BN_CP_32_FROM_BUF(td,a4); BN_CP_32_FROM_BUF(td,a3);\
	BN_CP_32_FROM_BUF(td,a2); BN_CP_32_FROM_BUF(td,a1);\
	}

int BN_nist_mod_256(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
	BN_CTX *ctx)
	{
#ifndef NO_32_BIT_TYPE
	int	tmp_int;
	int	carry = 0;
	register BN_ULONG *a_d, *r_d;
	BN_ULONG t_d[BN_NIST_256_TOP];
	BN_ULONG t_d2[BN_NIST_256_TOP];
	BN_32_BIT_BUF(8)  BN_32_BIT_BUF(9)
	BN_32_BIT_BUF(10) BN_32_BIT_BUF(11)
	BN_32_BIT_BUF(12) BN_32_BIT_BUF(13)
	BN_32_BIT_BUF(14) BN_32_BIT_BUF(15)

	if (!_is_set_256_data)
B
Bodo Möller 已提交
512 513 514 515 516 517 518 519 520
		{
		CRYPTO_w_lock(CRYPTO_LOCK_BN);
		
		if (!_is_set_256_data)
			_init_256_data();
		
		CRYPTO_w_unlock(CRYPTO_LOCK_BN);
		}
	
B
Bodo Möller 已提交
521 522
	tmp_int = BN_ucmp(field, a);
	if (tmp_int == 0)
523 524 525 526
		{
		BN_zero(r);
		return 1;
		}
B
Bodo Möller 已提交
527
	else if (tmp_int > 0)
B
Bodo Möller 已提交
528
		return (r == a)? 1 : (BN_copy(r ,a) != NULL);
B
Bodo Möller 已提交
529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614

	if (r != a)
		if (!BN_ncopy(r, a, BN_NIST_256_TOP))
			return 0;

	tmp_int = a->top-1;

	a_d = a->d;
	r_d = r->d;
	switch (tmp_int)
		{
		BN_CASE_32_BIT(15, a_d)
		BN_CASE_32_BIT(14, a_d)
		BN_CASE_32_BIT(13, a_d)
		BN_CASE_32_BIT(12, a_d)
		BN_CASE_32_BIT(11, a_d)
		BN_CASE_32_BIT(10, a_d)
		BN_CASE_32_BIT(9,  a_d)
		BN_CASE_32_BIT(8,  a_d)
			break;
		default: /* a->top == field->top */
			return BN_usub(r, a, field);
		}

	/*S1*/
	BN_256_SET(t_d,15,14,13,12,11,0,0,0)
	/*S2*/
	BN_256_SET(t_d2,0,15,14,13,12,0,0,0)
	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;
		for (tmp_int=BN_NIST_256_TOP; tmp_int != 0; --tmp_int)
			{
			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*/
	BN_256_SET(t_d,15,14,0,0,0,10,9,8)
	if (bn_add_words(r_d, r_d, t_d, BN_NIST_256_TOP))
		++carry;
	/*S4*/
	BN_256_SET(t_d,8,13,15,14,13,11,10,9)
	if (bn_add_words(r_d, r_d, t_d, BN_NIST_256_TOP))
		++carry;
	/*D1*/
	BN_256_SET(t_d,10,8,0,0,0,13,12,11)
	if (bn_sub_words(r_d, r_d, t_d, BN_NIST_256_TOP))
		--carry;
	/*D2*/
	BN_256_SET(t_d,11,9,0,0,15,14,13,12)
	if (bn_sub_words(r_d, r_d, t_d, BN_NIST_256_TOP))
		--carry;
	/*D3*/
	BN_256_SET(t_d,12,0,10,9,8,15,14,13)
	if (bn_sub_words(r_d, r_d, t_d, BN_NIST_256_TOP))
		--carry;
	/*D4*/
	BN_256_SET(t_d,13,0,11,10,9,0,15,14)
	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;
615
	bn_correct_top(r);
B
Bodo Möller 已提交
616 617 618
	if (BN_ucmp(r, field) >= 0)
		{
		bn_sub_words(r_d, r_d, _nist_p_256, BN_NIST_256_TOP);
619
		bn_correct_top(r);
B
Bodo Möller 已提交
620
		}
621
	bn_check_top(r);
B
Bodo Möller 已提交
622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672
	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;
	}

#define BN_384_SET(d,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10,a11,a12) \
	{\
	register BN_ULONG *td = (d);\
	BN_CP_32_FROM_BUF(td,a12); BN_CP_32_FROM_BUF(td,a11);\
	BN_CP_32_FROM_BUF(td,a10); BN_CP_32_FROM_BUF(td,a9);\
	BN_CP_32_FROM_BUF(td,a8);  BN_CP_32_FROM_BUF(td,a7);\
	BN_CP_32_FROM_BUF(td,a6);  BN_CP_32_FROM_BUF(td,a5);\
	BN_CP_32_FROM_BUF(td,a4);  BN_CP_32_FROM_BUF(td,a3);\
	BN_CP_32_FROM_BUF(td,a2);  BN_CP_32_FROM_BUF(td,a1);\
	}

int BN_nist_mod_384(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
	BN_CTX *ctx)
	{
#ifndef NO_32_BIT_TYPE
	int	tmp_int;
	int	carry = 0;
	register BN_ULONG *r_d, *a_d;
	BN_ULONG t_d[BN_NIST_384_TOP];
	BN_32_BIT_BUF(12) BN_32_BIT_BUF(13)
	BN_32_BIT_BUF(14) BN_32_BIT_BUF(15)
	BN_32_BIT_BUF(16) BN_32_BIT_BUF(17)
	BN_32_BIT_BUF(18) BN_32_BIT_BUF(19)
	BN_32_BIT_BUF(20) BN_32_BIT_BUF(21)
	BN_32_BIT_BUF(22) BN_32_BIT_BUF(23)

	if (!_is_set_384_data)
B
Bodo Möller 已提交
673 674 675 676 677 678 679 680
		{
		CRYPTO_w_lock(CRYPTO_LOCK_BN);
		
		if (!_is_set_384_data)
			_init_384_data();

		CRYPTO_w_unlock(CRYPTO_LOCK_BN);
		}
B
Bodo Möller 已提交
681 682 683

	tmp_int = BN_ucmp(field, a);
	if (tmp_int == 0)
684 685 686 687
		{
		BN_zero(r);
		return 1;
		}
B
Bodo Möller 已提交
688
	else if (tmp_int > 0)
B
Bodo Möller 已提交
689
		return (r == a)? 1 : (BN_copy(r ,a) != NULL);
B
Bodo Möller 已提交
690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 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 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782

	if (r != a)
		if (!BN_ncopy(r, a, BN_NIST_384_TOP))
			return 0;

	r_d = r->d;
	a_d = a->d;
	tmp_int = a->top-1;

	switch (tmp_int)
		{
		BN_CASE_32_BIT(23, a_d)
		BN_CASE_32_BIT(22, a_d)
		BN_CASE_32_BIT(21, a_d)
		BN_CASE_32_BIT(20, a_d)
		BN_CASE_32_BIT(19, a_d)
		BN_CASE_32_BIT(18, a_d)
		BN_CASE_32_BIT(17, a_d)
		BN_CASE_32_BIT(16, a_d)
		BN_CASE_32_BIT(15, a_d)
		BN_CASE_32_BIT(14, a_d)
		BN_CASE_32_BIT(13, a_d)
		BN_CASE_32_BIT(12, a_d)
			break;
		default: /* a->top == field->top */
			return BN_usub(r, a, field);
		}

	/*S1*/
	BN_256_SET(t_d,0,0,0,0,0,23,22,21)
		/* left shift */
		{
		register BN_ULONG *ap,t,c;
		ap = t_d;
		c=0;
		for (tmp_int=BN_NIST_256_TOP; tmp_int != 0; --tmp_int)
			{
			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;
	/*S2*/
	BN_384_SET(t_d,23,22,21,20,19,18,17,16,15,14,13,12)
	if (bn_add_words(r_d, r_d, t_d, BN_NIST_384_TOP))
		++carry;
	/*S3*/
	BN_384_SET(t_d,20,19,18,17,16,15,14,13,12,23,22,21)
	if (bn_add_words(r_d, r_d, t_d, BN_NIST_384_TOP))
		++carry;
	/*S4*/
	BN_384_SET(t_d,19,18,17,16,15,14,13,12,20,0,23,0)
	if (bn_add_words(r_d, r_d, t_d, BN_NIST_384_TOP))
		++carry;
	/*S5*/
	BN_256_SET(t_d,0,0,0,0,23,22,21,20)
	if (bn_add_words(r_d+(128/BN_BITS2), r_d+(128/BN_BITS2), 
		t_d, BN_NIST_256_TOP))
		++carry;
	/*S6*/
	BN_384_SET(t_d,0,0,0,0,0,0,23,22,21,0,0,20)
	if (bn_add_words(r_d, r_d, t_d, BN_NIST_384_TOP))
		++carry;
	/*D1*/
	BN_384_SET(t_d,22,21,20,19,18,17,16,15,14,13,12,23)
	if (bn_sub_words(r_d, r_d, t_d, BN_NIST_384_TOP))
		--carry;
	/*D2*/
	BN_384_SET(t_d,0,0,0,0,0,0,0,23,22,21,20,0)
	if (bn_sub_words(r_d, r_d, t_d, BN_NIST_384_TOP))
		--carry;
	/*D3*/
	BN_384_SET(t_d,0,0,0,0,0,0,0,23,23,0,0,0)
	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;
783
	bn_correct_top(r);
B
Bodo Möller 已提交
784 785 786
	if (BN_ucmp(r, field) >= 0)
		{
		bn_sub_words(r_d, r_d, _nist_p_384, BN_NIST_384_TOP);
787
		bn_correct_top(r);
B
Bodo Möller 已提交
788
		}
789
	bn_check_top(r);
B
Bodo Möller 已提交
790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815
	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 已提交
816
		return (r == a)? 1 : (BN_copy(r ,a) != NULL);
B
Bodo Möller 已提交
817 818 819 820 821 822 823 824 825 826 827 828 829 830

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

	if (!BN_ncopy(tmp, a, BN_NIST_521_TOP))
		return 0;
	if (!BN_rshift(r, a, 521))
		return 0;

	if (tmp->top == BN_NIST_521_TOP)
		tmp->d[BN_NIST_521_TOP-1]  &= BN_NIST_521_TOP_MASK;

831
	bn_correct_top(tmp);
B
Bodo Möller 已提交
832 833 834 835 836 837 838 839 840 841
	if (!BN_uadd(r, tmp, r))
		return 0;
	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; 
		}
842
	bn_correct_top(r);
B
Bodo Möller 已提交
843 844 845 846

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

848
	bn_check_top(r);
B
Bodo Möller 已提交
849 850
	return ret;
	}