0b29901
/* crypto/ec/ec_curve.c */
0b29901
/*
0b29901
 * Written by Nils Larsch for the OpenSSL project.
0b29901
 */
0b29901
/* ====================================================================
0b29901
 * Copyright (c) 1998-2010 The OpenSSL Project.  All rights reserved.
0b29901
 *
0b29901
 * Redistribution and use in source and binary forms, with or without
0b29901
 * modification, are permitted provided that the following conditions
0b29901
 * are met:
0b29901
 *
0b29901
 * 1. Redistributions of source code must retain the above copyright
0b29901
 *    notice, this list of conditions and the following disclaimer. 
0b29901
 *
0b29901
 * 2. Redistributions in binary form must reproduce the above copyright
0b29901
 *    notice, this list of conditions and the following disclaimer in
0b29901
 *    the documentation and/or other materials provided with the
0b29901
 *    distribution.
0b29901
 *
0b29901
 * 3. All advertising materials mentioning features or use of this
0b29901
 *    software must display the following acknowledgment:
0b29901
 *    "This product includes software developed by the OpenSSL Project
0b29901
 *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
0b29901
 *
0b29901
 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
0b29901
 *    endorse or promote products derived from this software without
0b29901
 *    prior written permission. For written permission, please contact
0b29901
 *    openssl-core@openssl.org.
0b29901
 *
0b29901
 * 5. Products derived from this software may not be called "OpenSSL"
0b29901
 *    nor may "OpenSSL" appear in their names without prior written
0b29901
 *    permission of the OpenSSL Project.
0b29901
 *
0b29901
 * 6. Redistributions of any form whatsoever must retain the following
0b29901
 *    acknowledgment:
0b29901
 *    "This product includes software developed by the OpenSSL Project
0b29901
 *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
0b29901
 *
0b29901
 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
0b29901
 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
0b29901
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
0b29901
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
0b29901
 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
0b29901
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
0b29901
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
0b29901
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
0b29901
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
0b29901
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
0b29901
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
0b29901
 * OF THE POSSIBILITY OF SUCH DAMAGE.
0b29901
 * ====================================================================
0b29901
 *
0b29901
 * This product includes cryptographic software written by Eric Young
0b29901
 * (eay@cryptsoft.com).  This product includes software written by Tim
0b29901
 * Hudson (tjh@cryptsoft.com).
0b29901
 *
0b29901
 */
0b29901
/* ====================================================================
0b29901
 * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
0b29901
 *
0b29901
 * Portions of the attached software ("Contribution") are developed by 
0b29901
 * SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project.
0b29901
 *
0b29901
 * The Contribution is licensed pursuant to the OpenSSL open source
0b29901
 * license provided above.
0b29901
 *
0b29901
 * The elliptic curve binary polynomial software is originally written by 
0b29901
 * Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems Laboratories.
0b29901
 *
0b29901
 */
0b29901
0b29901
#include "ec_lcl.h"
0b29901
#include <openssl/err.h>
0b29901
#include <openssl/obj_mac.h>
0b29901
#include <openssl/opensslconf.h>
0b29901
0b29901
typedef struct {
0b29901
	int	field_type,	/* either NID_X9_62_prime_field or
0b29901
				 * NID_X9_62_characteristic_two_field */
0b29901
		seed_len,
0b29901
		param_len;
0b29901
	unsigned int cofactor;	/* promoted to BN_ULONG */
0b29901
} EC_CURVE_DATA;
0b29901
0b29901
static const struct { EC_CURVE_DATA h; unsigned char data[20+48*6]; }
0b29901
	_EC_NIST_PRIME_384 = {
0b29901
	{ NID_X9_62_prime_field,20,48,1 },
0b29901
	{ 0xA3,0x35,0x92,0x6A,0xA3,0x19,0xA2,0x7A,0x1D,0x00,	/* seed */
0b29901
	  0x89,0x6A,0x67,0x73,0xA4,0x82,0x7A,0xCD,0xAC,0x73,
0b29901
0b29901
	  0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,	/* p */
0b29901
	  0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0b29901
	  0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0b29901
	  0xFF,0xFE,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,
0b29901
	  0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFF,
0b29901
	  0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,	/* a */
0b29901
	  0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0b29901
	  0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0b29901
	  0xFF,0xFE,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,
0b29901
	  0x00,0x00,0x00,0x00,0xFF,0xFF,0xFF,0xFC,
0b29901
	  0xB3,0x31,0x2F,0xA7,0xE2,0x3E,0xE7,0xE4,0x98,0x8E,	/* b */
0b29901
	  0x05,0x6B,0xE3,0xF8,0x2D,0x19,0x18,0x1D,0x9C,0x6E,
0b29901
	  0xFE,0x81,0x41,0x12,0x03,0x14,0x08,0x8F,0x50,0x13,
0b29901
	  0x87,0x5A,0xC6,0x56,0x39,0x8D,0x8A,0x2E,0xD1,0x9D,
0b29901
	  0x2A,0x85,0xC8,0xED,0xD3,0xEC,0x2A,0xEF,
0b29901
	  0xAA,0x87,0xCA,0x22,0xBE,0x8B,0x05,0x37,0x8E,0xB1,	/* x */
0b29901
	  0xC7,0x1E,0xF3,0x20,0xAD,0x74,0x6E,0x1D,0x3B,0x62,
0b29901
	  0x8B,0xA7,0x9B,0x98,0x59,0xF7,0x41,0xE0,0x82,0x54,
0b29901
	  0x2A,0x38,0x55,0x02,0xF2,0x5D,0xBF,0x55,0x29,0x6C,
0b29901
	  0x3A,0x54,0x5E,0x38,0x72,0x76,0x0A,0xB7,
0b29901
	  0x36,0x17,0xde,0x4a,0x96,0x26,0x2c,0x6f,0x5d,0x9e,	/* y */
0b29901
	  0x98,0xbf,0x92,0x92,0xdc,0x29,0xf8,0xf4,0x1d,0xbd,
0b29901
	  0x28,0x9a,0x14,0x7c,0xe9,0xda,0x31,0x13,0xb5,0xf0,
0b29901
	  0xb8,0xc0,0x0a,0x60,0xb1,0xce,0x1d,0x7e,0x81,0x9d,
0b29901
	  0x7a,0x43,0x1d,0x7c,0x90,0xea,0x0e,0x5f,
0b29901
	  0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,	/* order */
0b29901
	  0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0b29901
	  0xFF,0xFF,0xFF,0xFF,0xC7,0x63,0x4D,0x81,0xF4,0x37,
0b29901
	  0x2D,0xDF,0x58,0x1A,0x0D,0xB2,0x48,0xB0,0xA7,0x7A,
0b29901
	  0xEC,0xEC,0x19,0x6A,0xCC,0xC5,0x29,0x73 }
0b29901
	};
0b29901
0b29901
static const struct { EC_CURVE_DATA h; unsigned char data[20+32*6]; }
0b29901
	_EC_X9_62_PRIME_256V1 = {
0b29901
	{ NID_X9_62_prime_field,20,32,1 },
0b29901
	{ 0xC4,0x9D,0x36,0x08,0x86,0xE7,0x04,0x93,0x6A,0x66,	/* seed */
0b29901
	  0x78,0xE1,0x13,0x9D,0x26,0xB7,0x81,0x9F,0x7E,0x90,
0b29901
0b29901
	  0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x01,0x00,0x00,	/* p */
0b29901
	  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0b29901
	  0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0b29901
	  0xFF,0xFF,
0b29901
	  0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x01,0x00,0x00,	/* a */
0b29901
	  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0b29901
	  0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,
0b29901
	  0xFF,0xFC,
0b29901
	  0x5A,0xC6,0x35,0xD8,0xAA,0x3A,0x93,0xE7,0xB3,0xEB,	/* b */
0b29901
	  0xBD,0x55,0x76,0x98,0x86,0xBC,0x65,0x1D,0x06,0xB0,
0b29901
	  0xCC,0x53,0xB0,0xF6,0x3B,0xCE,0x3C,0x3E,0x27,0xD2,
0b29901
	  0x60,0x4B,
0b29901
	  0x6B,0x17,0xD1,0xF2,0xE1,0x2C,0x42,0x47,0xF8,0xBC,	/* x */
0b29901
	  0xE6,0xE5,0x63,0xA4,0x40,0xF2,0x77,0x03,0x7D,0x81,
0b29901
	  0x2D,0xEB,0x33,0xA0,0xF4,0xA1,0x39,0x45,0xD8,0x98,
0b29901
	  0xC2,0x96,
0b29901
	  0x4f,0xe3,0x42,0xe2,0xfe,0x1a,0x7f,0x9b,0x8e,0xe7,	/* y */
0b29901
	  0xeb,0x4a,0x7c,0x0f,0x9e,0x16,0x2b,0xce,0x33,0x57,
0b29901
	  0x6b,0x31,0x5e,0xce,0xcb,0xb6,0x40,0x68,0x37,0xbf,
0b29901
	  0x51,0xf5,
0b29901
	  0xFF,0xFF,0xFF,0xFF,0x00,0x00,0x00,0x00,0xFF,0xFF,	/* order */
0b29901
	  0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xBC,0xE6,0xFA,0xAD,
0b29901
	  0xA7,0x17,0x9E,0x84,0xF3,0xB9,0xCA,0xC2,0xFC,0x63,
0b29901
	  0x25,0x51 }
0b29901
	};
0b29901
0b29901
typedef struct _ec_list_element_st {
0b29901
	int	nid;
0b29901
	const EC_CURVE_DATA *data;
0b29901
	const EC_METHOD *(*meth)(void);
0b29901
	const char *comment;
0b29901
	} ec_list_element;
0b29901
0b29901
static const ec_list_element curve_list[] = {
0b29901
	/* prime field curves */
0b29901
	/* secg curves */
0b29901
	/* SECG secp256r1 is the same as X9.62 prime256v1 and hence omitted */
0b29901
	{ NID_secp384r1, &_EC_NIST_PRIME_384.h, 0, "NIST/SECG curve over a 384 bit prime field" },
0b29901
#ifndef OPENSSL_NO_EC_NISTP_64_GCC_128
0b29901
	{ NID_X9_62_prime256v1, &_EC_X9_62_PRIME_256V1.h, EC_GFp_nistp256_method, "X9.62/SECG curve over a 256 bit prime field" },
0b29901
#else
0b29901
	{ NID_X9_62_prime256v1, &_EC_X9_62_PRIME_256V1.h, 0, "X9.62/SECG curve over a 256 bit prime field" },
0b29901
#endif
0b29901
};
0b29901
0b29901
#define curve_list_length (sizeof(curve_list)/sizeof(ec_list_element))
0b29901
0b29901
static EC_GROUP *ec_group_new_from_data(const ec_list_element curve)
0b29901
	{
0b29901
	EC_GROUP *group=NULL;
0b29901
	EC_POINT *P=NULL;
0b29901
	BN_CTX	 *ctx=NULL;
0b29901
	BIGNUM	 *p=NULL, *a=NULL, *b=NULL, *x=NULL, *y=NULL, *order=NULL;
0b29901
	int	 ok=0;
0b29901
	int	 seed_len,param_len;
0b29901
	const EC_METHOD *meth;
0b29901
	const EC_CURVE_DATA *data;
0b29901
	const unsigned char *params;
0b29901
0b29901
	if ((ctx = BN_CTX_new()) == NULL)
0b29901
		{
0b29901
		ECerr(EC_F_EC_GROUP_NEW_FROM_DATA, ERR_R_MALLOC_FAILURE);
0b29901
		goto err;
0b29901
		}
0b29901
0b29901
	data = curve.data;
0b29901
	seed_len  = data->seed_len;
0b29901
	param_len = data->param_len;
0b29901
	params	  = (const unsigned char *)(data+1);	/* skip header */
0b29901
	params	 += seed_len;				/* skip seed   */
0b29901
0b29901
	if (!(p = BN_bin2bn(params+0*param_len, param_len, NULL))
0b29901
		|| !(a = BN_bin2bn(params+1*param_len, param_len, NULL))
0b29901
		|| !(b = BN_bin2bn(params+2*param_len, param_len, NULL)))
0b29901
		{
0b29901
		ECerr(EC_F_EC_GROUP_NEW_FROM_DATA, ERR_R_BN_LIB);
0b29901
		goto err;
0b29901
		}
0b29901
0b29901
	if (curve.meth != 0)
0b29901
		{
0b29901
		meth = curve.meth();
0b29901
		if (((group = EC_GROUP_new(meth)) == NULL) ||
0b29901
			(!(group->meth->group_set_curve(group, p, a, b, ctx))))
0b29901
			{
0b29901
			ECerr(EC_F_EC_GROUP_NEW_FROM_DATA, ERR_R_EC_LIB);
0b29901
			goto err;
0b29901
			}
0b29901
		}
0b29901
	else if (data->field_type == NID_X9_62_prime_field)
0b29901
		{
0b29901
		if ((group = EC_GROUP_new_curve_GFp(p, a, b, ctx)) == NULL)
0b29901
			{
0b29901
			ECerr(EC_F_EC_GROUP_NEW_FROM_DATA, ERR_R_EC_LIB);
0b29901
			goto err;
0b29901
			}
0b29901
		}
0b29901
#ifndef OPENSSL_NO_EC2M
0b29901
	else	/* field_type == NID_X9_62_characteristic_two_field */
0b29901
		{
0b29901
		if ((group = EC_GROUP_new_curve_GF2m(p, a, b, ctx)) == NULL)
0b29901
			{
0b29901
			ECerr(EC_F_EC_GROUP_NEW_FROM_DATA, ERR_R_EC_LIB);
0b29901
			goto err;
0b29901
			}
0b29901
		}
0b29901
#endif
0b29901
0b29901
	if ((P = EC_POINT_new(group)) == NULL)
0b29901
		{
0b29901
		ECerr(EC_F_EC_GROUP_NEW_FROM_DATA, ERR_R_EC_LIB);
0b29901
		goto err;
0b29901
		}
0b29901
0b29901
	if (!(x = BN_bin2bn(params+3*param_len, param_len, NULL))
0b29901
		|| !(y = BN_bin2bn(params+4*param_len, param_len, NULL)))
0b29901
		{
0b29901
		ECerr(EC_F_EC_GROUP_NEW_FROM_DATA, ERR_R_BN_LIB);
0b29901
		goto err;
0b29901
		}
0b29901
	if (!EC_POINT_set_affine_coordinates_GFp(group, P, x, y, ctx))
0b29901
		{
0b29901
		ECerr(EC_F_EC_GROUP_NEW_FROM_DATA, ERR_R_EC_LIB);
0b29901
		goto err;
0b29901
		}
0b29901
	if (!(order = BN_bin2bn(params+5*param_len, param_len, NULL))
0b29901
		|| !BN_set_word(x, (BN_ULONG)data->cofactor))
0b29901
		{
0b29901
		ECerr(EC_F_EC_GROUP_NEW_FROM_DATA, ERR_R_BN_LIB);
0b29901
		goto err;
0b29901
		}
0b29901
	if (!EC_GROUP_set_generator(group, P, order, x))
0b29901
		{
0b29901
		ECerr(EC_F_EC_GROUP_NEW_FROM_DATA, ERR_R_EC_LIB);
0b29901
		goto err;
0b29901
		}
0b29901
	if (seed_len)
0b29901
		{
0b29901
		if (!EC_GROUP_set_seed(group, params-seed_len, seed_len))
0b29901
			{
0b29901
			ECerr(EC_F_EC_GROUP_NEW_FROM_DATA, ERR_R_EC_LIB);
0b29901
			goto err;
0b29901
			}
0b29901
		}
0b29901
	ok=1;
0b29901
err:
0b29901
	if (!ok)
0b29901
		{
0b29901
		EC_GROUP_free(group);
0b29901
		group = NULL;
0b29901
		}
0b29901
	if (P)
0b29901
		EC_POINT_free(P);
0b29901
	if (ctx)
0b29901
		BN_CTX_free(ctx);
0b29901
	if (p)
0b29901
		BN_free(p);
0b29901
	if (a)
0b29901
		BN_free(a);
0b29901
	if (b)
0b29901
		BN_free(b);
0b29901
	if (order)
0b29901
		BN_free(order);
0b29901
	if (x)
0b29901
		BN_free(x);
0b29901
	if (y)
0b29901
		BN_free(y);
0b29901
	return group;
0b29901
	}
0b29901
0b29901
EC_GROUP *EC_GROUP_new_by_curve_name(int nid)
0b29901
	{
0b29901
	size_t i;
0b29901
	EC_GROUP *ret = NULL;
0b29901
0b29901
	if (nid <= 0)
0b29901
		return NULL;
0b29901
0b29901
	for (i=0; i
0b29901
		if (curve_list[i].nid == nid)
0b29901
			{
0b29901
			ret = ec_group_new_from_data(curve_list[i]);
0b29901
			break;
0b29901
			}
0b29901
0b29901
	if (ret == NULL)
0b29901
		{
0b29901
		ECerr(EC_F_EC_GROUP_NEW_BY_CURVE_NAME, EC_R_UNKNOWN_GROUP);
0b29901
		return NULL;
0b29901
		}
0b29901
0b29901
	EC_GROUP_set_curve_name(ret, nid);
0b29901
0b29901
	return ret;
0b29901
	}
0b29901
0b29901
size_t EC_get_builtin_curves(EC_builtin_curve *r, size_t nitems)
0b29901
	{
0b29901
	size_t	i, min;
0b29901
0b29901
	if (r == NULL || nitems == 0)
0b29901
		return curve_list_length;
0b29901
0b29901
	min = nitems < curve_list_length ? nitems : curve_list_length;
0b29901
0b29901
	for (i = 0; i < min; i++)
0b29901
		{
0b29901
		r[i].nid = curve_list[i].nid;
0b29901
		r[i].comment = curve_list[i].comment;
0b29901
		}
0b29901
0b29901
	return curve_list_length;
0b29901
	}