2002-02-13 18:21:51 +00:00
|
|
|
/* crypto/ecdsa/ecs_ossl.c */
|
2004-02-22 19:32:53 +00:00
|
|
|
/*
|
|
|
|
* Written by Nils Larsch for the OpenSSL project
|
|
|
|
*/
|
2002-02-13 18:21:51 +00:00
|
|
|
/* ====================================================================
|
2004-02-22 19:32:53 +00:00
|
|
|
* Copyright (c) 1998-2004 The OpenSSL Project. All rights reserved.
|
2002-02-13 18:21:51 +00:00
|
|
|
*
|
|
|
|
* 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).
|
|
|
|
*
|
|
|
|
*/
|
2002-07-26 08:41:04 +00:00
|
|
|
|
|
|
|
#include "ecdsa.h"
|
|
|
|
#include <openssl/err.h>
|
2002-08-07 10:49:54 +00:00
|
|
|
#include <openssl/obj_mac.h>
|
2002-02-13 18:21:51 +00:00
|
|
|
|
2002-08-07 10:49:54 +00:00
|
|
|
static ECDSA_SIG *ecdsa_do_sign(const unsigned char *dgst, int dlen,
|
|
|
|
EC_KEY *eckey);
|
|
|
|
static int ecdsa_sign_setup(EC_KEY *eckey, BN_CTX *ctx_in, BIGNUM **kinvp,
|
|
|
|
BIGNUM **rp);
|
|
|
|
static int ecdsa_do_verify(const unsigned char *dgst, int dgst_len,
|
|
|
|
ECDSA_SIG *sig, EC_KEY *eckey);
|
2002-02-13 18:21:51 +00:00
|
|
|
|
|
|
|
static ECDSA_METHOD openssl_ecdsa_meth = {
|
2002-08-07 10:49:54 +00:00
|
|
|
"OpenSSL ECDSA method",
|
|
|
|
ecdsa_do_sign,
|
|
|
|
ecdsa_sign_setup,
|
|
|
|
ecdsa_do_verify,
|
|
|
|
#if 0
|
|
|
|
NULL, /* init */
|
|
|
|
NULL, /* finish */
|
|
|
|
#endif
|
|
|
|
0, /* flags */
|
|
|
|
NULL /* app_data */
|
2002-02-13 18:21:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const ECDSA_METHOD *ECDSA_OpenSSL(void)
|
|
|
|
{
|
|
|
|
return &openssl_ecdsa_meth;
|
|
|
|
}
|
|
|
|
|
2002-08-07 10:49:54 +00:00
|
|
|
static int ecdsa_sign_setup(EC_KEY *eckey, BN_CTX *ctx_in, BIGNUM **kinvp,
|
|
|
|
BIGNUM **rp)
|
2002-02-13 18:21:51 +00:00
|
|
|
{
|
|
|
|
BN_CTX *ctx = NULL;
|
2004-02-22 19:32:53 +00:00
|
|
|
BIGNUM *k = NULL, *r = NULL, *order = NULL, *X = NULL;
|
2002-02-13 18:21:51 +00:00
|
|
|
EC_POINT *tmp_point=NULL;
|
2004-02-22 19:32:53 +00:00
|
|
|
EC_GROUP *group;
|
2002-08-07 10:49:54 +00:00
|
|
|
int ret = 0;
|
|
|
|
if (!eckey || !eckey->group || !eckey->pub_key || !eckey->priv_key)
|
2002-02-13 18:21:51 +00:00
|
|
|
{
|
2002-08-07 10:49:54 +00:00
|
|
|
ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP, ERR_R_PASSED_NULL_PARAMETER);
|
2002-02-13 18:21:51 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2004-02-22 19:32:53 +00:00
|
|
|
group = eckey->group;
|
2003-01-15 14:54:59 +00:00
|
|
|
|
2002-02-13 18:21:51 +00:00
|
|
|
if (ctx_in == NULL)
|
|
|
|
{
|
2004-02-22 19:32:53 +00:00
|
|
|
if ((ctx = BN_CTX_new()) == NULL)
|
2002-08-07 10:49:54 +00:00
|
|
|
{
|
2004-02-22 19:32:53 +00:00
|
|
|
ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP,ERR_R_MALLOC_FAILURE);
|
|
|
|
return 0;
|
2002-08-07 10:49:54 +00:00
|
|
|
}
|
2002-02-13 18:21:51 +00:00
|
|
|
}
|
|
|
|
else
|
2004-02-22 19:32:53 +00:00
|
|
|
ctx = ctx_in;
|
2002-02-13 18:21:51 +00:00
|
|
|
|
2004-02-22 19:32:53 +00:00
|
|
|
k = BN_new(); /* this value is later returned in *kinvp */
|
|
|
|
r = BN_new(); /* this value is later returned in *rp */
|
|
|
|
order = BN_new();
|
|
|
|
X = BN_new();
|
|
|
|
if (!k || !r || !order || !X)
|
2002-02-13 18:21:51 +00:00
|
|
|
{
|
2004-02-22 19:32:53 +00:00
|
|
|
ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP, ERR_R_MALLOC_FAILURE);
|
|
|
|
goto err;
|
2002-08-07 10:49:54 +00:00
|
|
|
}
|
2004-02-22 19:32:53 +00:00
|
|
|
if ((tmp_point = EC_POINT_new(group)) == NULL)
|
2002-08-07 10:49:54 +00:00
|
|
|
{
|
|
|
|
ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP, ERR_R_EC_LIB);
|
2002-02-13 18:21:51 +00:00
|
|
|
goto err;
|
|
|
|
}
|
2004-02-22 19:32:53 +00:00
|
|
|
if (!EC_GROUP_get_order(group, order, ctx))
|
2002-02-13 18:21:51 +00:00
|
|
|
{
|
2002-08-07 10:49:54 +00:00
|
|
|
ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP, ERR_R_EC_LIB);
|
2002-02-13 18:21:51 +00:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
/* get random k */
|
|
|
|
do
|
2004-02-22 19:32:53 +00:00
|
|
|
if (!BN_rand_range(k, order))
|
2002-02-13 18:21:51 +00:00
|
|
|
{
|
2002-08-07 10:49:54 +00:00
|
|
|
ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP,
|
|
|
|
ECDSA_R_RANDOM_NUMBER_GENERATION_FAILED);
|
2002-02-13 18:21:51 +00:00
|
|
|
goto err;
|
|
|
|
}
|
2004-02-22 19:32:53 +00:00
|
|
|
while (BN_is_zero(k));
|
2002-02-13 18:21:51 +00:00
|
|
|
|
|
|
|
/* compute r the x-coordinate of generator * k */
|
2004-02-22 19:32:53 +00:00
|
|
|
if (!EC_POINT_mul(group, tmp_point, k, NULL, NULL, ctx))
|
2002-08-07 10:49:54 +00:00
|
|
|
{
|
|
|
|
ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP, ERR_R_EC_LIB);
|
|
|
|
goto err;
|
|
|
|
}
|
2004-02-22 19:32:53 +00:00
|
|
|
if (EC_METHOD_get_field_type(EC_GROUP_method_of(group)) == NID_X9_62_prime_field)
|
2002-08-07 10:49:54 +00:00
|
|
|
{
|
2004-02-22 19:32:53 +00:00
|
|
|
if (!EC_POINT_get_affine_coordinates_GFp(group,
|
2002-08-07 10:49:54 +00:00
|
|
|
tmp_point, X, NULL, ctx))
|
|
|
|
{
|
2004-02-22 19:32:53 +00:00
|
|
|
ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP,ERR_R_EC_LIB);
|
2002-08-07 10:49:54 +00:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else /* NID_X9_62_characteristic_two_field */
|
|
|
|
{
|
2004-02-22 19:32:53 +00:00
|
|
|
if (!EC_POINT_get_affine_coordinates_GF2m(group,
|
2002-08-07 10:49:54 +00:00
|
|
|
tmp_point, X, NULL, ctx))
|
|
|
|
{
|
2004-02-22 19:32:53 +00:00
|
|
|
ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP,ERR_R_EC_LIB);
|
2002-08-07 10:49:54 +00:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
}
|
2004-02-22 19:32:53 +00:00
|
|
|
if (!BN_nnmod(r, X, order, ctx))
|
2002-02-13 18:21:51 +00:00
|
|
|
{
|
2002-08-07 10:49:54 +00:00
|
|
|
ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP, ERR_R_BN_LIB);
|
2002-02-13 18:21:51 +00:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while (BN_is_zero(r));
|
|
|
|
|
|
|
|
/* compute the inverse of k */
|
2004-02-22 19:32:53 +00:00
|
|
|
if (!BN_mod_inverse(k, k, order, ctx))
|
2002-08-07 10:49:54 +00:00
|
|
|
{
|
|
|
|
ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP, ERR_R_BN_LIB);
|
|
|
|
goto err;
|
|
|
|
}
|
2004-02-22 19:32:53 +00:00
|
|
|
/* clear old values if necessary */
|
|
|
|
if (*rp != NULL)
|
2002-02-13 18:21:51 +00:00
|
|
|
BN_clear_free(*rp);
|
2004-02-22 19:32:53 +00:00
|
|
|
if (*kinvp != NULL)
|
2002-02-13 18:21:51 +00:00
|
|
|
BN_clear_free(*kinvp);
|
2004-02-22 19:32:53 +00:00
|
|
|
/* save the pre-computed values */
|
|
|
|
*rp = r;
|
|
|
|
*kinvp = k;
|
2002-02-13 18:21:51 +00:00
|
|
|
ret = 1;
|
|
|
|
err:
|
|
|
|
if (!ret)
|
|
|
|
{
|
2004-02-22 19:32:53 +00:00
|
|
|
if (k != NULL) BN_clear_free(k);
|
2002-02-13 18:21:51 +00:00
|
|
|
if (r != NULL) BN_clear_free(r);
|
|
|
|
}
|
|
|
|
if (ctx_in == NULL)
|
|
|
|
BN_CTX_free(ctx);
|
|
|
|
if (order != NULL)
|
2004-02-22 19:32:53 +00:00
|
|
|
BN_free(order);
|
2002-02-13 18:21:51 +00:00
|
|
|
if (tmp_point != NULL)
|
|
|
|
EC_POINT_free(tmp_point);
|
2004-02-22 19:32:53 +00:00
|
|
|
if (X)
|
|
|
|
BN_clear_free(X);
|
2002-02-13 18:21:51 +00:00
|
|
|
return(ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-08-07 10:49:54 +00:00
|
|
|
static ECDSA_SIG *ecdsa_do_sign(const unsigned char *dgst, int dgst_len,
|
|
|
|
EC_KEY *eckey)
|
2002-02-13 18:21:51 +00:00
|
|
|
{
|
2004-02-22 19:32:53 +00:00
|
|
|
int ok = 0;
|
|
|
|
BIGNUM *kinv=NULL, *r, *s, *m=NULL,*tmp=NULL,*order=NULL;
|
|
|
|
BN_CTX *ctx = NULL;
|
|
|
|
EC_GROUP *group;
|
|
|
|
ECDSA_SIG *ret;
|
2002-08-07 10:49:54 +00:00
|
|
|
ECDSA_DATA *ecdsa;
|
|
|
|
|
|
|
|
ecdsa = ecdsa_check(eckey);
|
2002-02-13 18:21:51 +00:00
|
|
|
|
2004-02-22 19:32:53 +00:00
|
|
|
if (!eckey->group || !eckey->pub_key || !eckey->priv_key || !ecdsa)
|
2002-02-13 18:21:51 +00:00
|
|
|
{
|
2002-08-07 10:49:54 +00:00
|
|
|
ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_PASSED_NULL_PARAMETER);
|
2004-02-22 19:32:53 +00:00
|
|
|
return NULL;
|
2002-02-13 18:21:51 +00:00
|
|
|
}
|
|
|
|
|
2004-02-22 19:32:53 +00:00
|
|
|
group = eckey->group;
|
|
|
|
ret = ECDSA_SIG_new();
|
|
|
|
if (!ret)
|
|
|
|
{
|
|
|
|
ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_MALLOC_FAILURE);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
s = ret->s;
|
|
|
|
|
2002-08-07 10:49:54 +00:00
|
|
|
if ((ctx = BN_CTX_new()) == NULL || (order = BN_new()) == NULL ||
|
2004-02-22 19:32:53 +00:00
|
|
|
(tmp = BN_new()) == NULL || (m = BN_new()) == NULL)
|
2002-08-07 10:49:54 +00:00
|
|
|
{
|
|
|
|
ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_MALLOC_FAILURE);
|
|
|
|
goto err;
|
|
|
|
}
|
2002-02-13 18:21:51 +00:00
|
|
|
|
2004-02-22 19:32:53 +00:00
|
|
|
if (!EC_GROUP_get_order(group, order, ctx))
|
2002-02-13 18:21:51 +00:00
|
|
|
{
|
2002-08-07 10:49:54 +00:00
|
|
|
ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_EC_LIB);
|
2002-02-13 18:21:51 +00:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
if (dgst_len > BN_num_bytes(order))
|
|
|
|
{
|
2002-08-07 10:49:54 +00:00
|
|
|
ECDSAerr(ECDSA_F_ECDSA_DO_SIGN,
|
|
|
|
ECDSA_R_DATA_TOO_LARGE_FOR_KEY_SIZE);
|
2002-02-13 18:21:51 +00:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2004-02-22 19:32:53 +00:00
|
|
|
if (!BN_bin2bn(dgst, dgst_len, m))
|
2002-08-07 10:49:54 +00:00
|
|
|
{
|
|
|
|
ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_BN_LIB);
|
|
|
|
goto err;
|
|
|
|
}
|
2002-02-13 18:21:51 +00:00
|
|
|
do
|
|
|
|
{
|
2002-08-07 10:49:54 +00:00
|
|
|
if (ecdsa->kinv == NULL || ecdsa->r == NULL)
|
2002-02-13 18:21:51 +00:00
|
|
|
{
|
2004-02-22 19:32:53 +00:00
|
|
|
if (!ECDSA_sign_setup(eckey, ctx, &kinv, &ret->r))
|
2002-08-07 10:49:54 +00:00
|
|
|
{
|
2004-02-22 19:32:53 +00:00
|
|
|
ECDSAerr(ECDSA_F_ECDSA_DO_SIGN,ERR_R_ECDSA_LIB);
|
2002-08-07 10:49:54 +00:00
|
|
|
goto err;
|
|
|
|
}
|
2004-02-22 19:32:53 +00:00
|
|
|
r = ret->r;
|
2002-02-13 18:21:51 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-02-22 19:32:53 +00:00
|
|
|
BN_free(ret->r);
|
|
|
|
kinv = ecdsa->kinv;
|
|
|
|
r = ecdsa->r;
|
|
|
|
ret->r = r;
|
2002-02-13 18:21:51 +00:00
|
|
|
ecdsa->kinv = NULL;
|
2004-02-22 19:32:53 +00:00
|
|
|
ecdsa->r = NULL;
|
2002-02-13 18:21:51 +00:00
|
|
|
}
|
|
|
|
|
2004-02-22 19:32:53 +00:00
|
|
|
if (!BN_mod_mul(tmp, eckey->priv_key, r, order, ctx))
|
2002-08-07 10:49:54 +00:00
|
|
|
{
|
|
|
|
ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_BN_LIB);
|
|
|
|
goto err;
|
|
|
|
}
|
2004-02-22 19:32:53 +00:00
|
|
|
if (!BN_mod_add_quick(s, tmp, m, order))
|
2002-08-07 10:49:54 +00:00
|
|
|
{
|
|
|
|
ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_BN_LIB);
|
|
|
|
goto err;
|
|
|
|
}
|
2004-02-22 19:32:53 +00:00
|
|
|
if (!BN_mod_mul(s, s, kinv, order, ctx))
|
2002-08-07 10:49:54 +00:00
|
|
|
{
|
|
|
|
ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_BN_LIB);
|
|
|
|
goto err;
|
|
|
|
}
|
2002-02-13 18:21:51 +00:00
|
|
|
}
|
|
|
|
while (BN_is_zero(s));
|
|
|
|
|
2004-02-22 19:32:53 +00:00
|
|
|
ok = 1;
|
|
|
|
err:
|
|
|
|
if (!ok)
|
2002-02-20 13:08:17 +00:00
|
|
|
{
|
|
|
|
ECDSA_SIG_free(ret);
|
|
|
|
ret = NULL;
|
|
|
|
}
|
2002-08-07 10:49:54 +00:00
|
|
|
if (ctx)
|
|
|
|
BN_CTX_free(ctx);
|
|
|
|
if (m)
|
|
|
|
BN_clear_free(m);
|
|
|
|
if (tmp)
|
|
|
|
BN_clear_free(tmp);
|
|
|
|
if (order)
|
2004-02-22 19:32:53 +00:00
|
|
|
BN_free(order);
|
2002-08-07 10:49:54 +00:00
|
|
|
if (kinv)
|
|
|
|
BN_clear_free(kinv);
|
2004-02-22 19:32:53 +00:00
|
|
|
return ret;
|
2002-02-13 18:21:51 +00:00
|
|
|
}
|
|
|
|
|
2002-08-07 10:49:54 +00:00
|
|
|
static int ecdsa_do_verify(const unsigned char *dgst, int dgst_len,
|
|
|
|
ECDSA_SIG *sig, EC_KEY *eckey)
|
2002-02-13 18:21:51 +00:00
|
|
|
{
|
2002-08-07 10:49:54 +00:00
|
|
|
int ret = -1;
|
2004-02-22 19:32:53 +00:00
|
|
|
BN_CTX *ctx;
|
|
|
|
BIGNUM *order, *u1, *u2, *m, *X;
|
|
|
|
EC_POINT *point = NULL;
|
|
|
|
EC_GROUP *group;
|
|
|
|
/* check input values */
|
2002-08-07 10:49:54 +00:00
|
|
|
if (!eckey || !eckey->group || !eckey->pub_key || !sig)
|
2002-02-13 18:21:51 +00:00
|
|
|
{
|
2002-08-07 10:49:54 +00:00
|
|
|
ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ECDSA_R_MISSING_PARAMETERS);
|
2002-02-13 18:21:51 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2004-02-22 19:32:53 +00:00
|
|
|
group = eckey->group;
|
|
|
|
|
|
|
|
ctx = BN_CTX_new();
|
|
|
|
if (!ctx)
|
2002-08-07 10:49:54 +00:00
|
|
|
{
|
|
|
|
ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_MALLOC_FAILURE);
|
2004-02-22 19:32:53 +00:00
|
|
|
return -1;
|
2002-08-07 10:49:54 +00:00
|
|
|
}
|
2004-02-22 19:32:53 +00:00
|
|
|
BN_CTX_start(ctx);
|
|
|
|
order = BN_CTX_get(ctx);
|
|
|
|
u1 = BN_CTX_get(ctx);
|
|
|
|
u2 = BN_CTX_get(ctx);
|
|
|
|
m = BN_CTX_get(ctx);
|
|
|
|
X = BN_CTX_get(ctx);
|
|
|
|
if (!X)
|
2002-08-07 10:49:54 +00:00
|
|
|
{
|
|
|
|
ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_BN_LIB);
|
|
|
|
goto err;
|
|
|
|
}
|
2004-02-22 19:32:53 +00:00
|
|
|
|
|
|
|
if (!EC_GROUP_get_order(group, order, ctx))
|
2002-02-13 18:21:51 +00:00
|
|
|
{
|
2004-02-22 19:32:53 +00:00
|
|
|
ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_EC_LIB);
|
2002-02-13 18:21:51 +00:00
|
|
|
goto err;
|
|
|
|
}
|
2004-02-22 19:32:53 +00:00
|
|
|
|
|
|
|
if (BN_is_zero(sig->r) || BN_get_sign(sig->r) ||
|
|
|
|
BN_ucmp(sig->r, order) >= 0 || BN_is_zero(sig->s) ||
|
|
|
|
BN_get_sign(sig->s) || BN_ucmp(sig->s, order) >= 0)
|
2002-02-13 18:21:51 +00:00
|
|
|
{
|
2002-08-07 10:49:54 +00:00
|
|
|
ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ECDSA_R_BAD_SIGNATURE);
|
2004-02-22 19:32:53 +00:00
|
|
|
ret = 0; /* signature is invalid */
|
2002-02-13 18:21:51 +00:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
/* calculate tmp1 = inv(S) mod order */
|
2004-02-22 19:32:53 +00:00
|
|
|
if (!BN_mod_inverse(u2, sig->s, order, ctx))
|
2002-08-07 10:49:54 +00:00
|
|
|
{
|
|
|
|
ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_BN_LIB);
|
|
|
|
goto err;
|
|
|
|
}
|
2002-02-13 18:21:51 +00:00
|
|
|
/* digest -> m */
|
2004-02-22 19:32:53 +00:00
|
|
|
if (!BN_bin2bn(dgst, dgst_len, m))
|
2002-08-07 10:49:54 +00:00
|
|
|
{
|
|
|
|
ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_BN_LIB);
|
|
|
|
goto err;
|
|
|
|
}
|
2002-02-13 18:21:51 +00:00
|
|
|
/* u1 = m * tmp mod order */
|
2004-02-22 19:32:53 +00:00
|
|
|
if (!BN_mod_mul(u1, m, u2, order, ctx))
|
2002-08-07 10:49:54 +00:00
|
|
|
{
|
|
|
|
ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_BN_LIB);
|
|
|
|
goto err;
|
|
|
|
}
|
2002-02-13 18:21:51 +00:00
|
|
|
/* u2 = r * w mod q */
|
2004-02-22 19:32:53 +00:00
|
|
|
if (!BN_mod_mul(u2, sig->r, u2, order, ctx))
|
2002-08-07 10:49:54 +00:00
|
|
|
{
|
|
|
|
ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_BN_LIB);
|
|
|
|
goto err;
|
|
|
|
}
|
2002-02-13 18:21:51 +00:00
|
|
|
|
2004-02-22 19:32:53 +00:00
|
|
|
if ((point = EC_POINT_new(group)) == NULL)
|
2002-02-13 18:21:51 +00:00
|
|
|
{
|
2002-08-07 10:49:54 +00:00
|
|
|
ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_MALLOC_FAILURE);
|
2002-02-13 18:21:51 +00:00
|
|
|
goto err;
|
|
|
|
}
|
2004-02-22 19:32:53 +00:00
|
|
|
if (!EC_POINT_mul(group, point, u1, eckey->pub_key, u2, ctx))
|
2002-02-13 18:21:51 +00:00
|
|
|
{
|
2002-08-07 10:49:54 +00:00
|
|
|
ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_EC_LIB);
|
|
|
|
goto err;
|
|
|
|
}
|
2004-02-22 19:32:53 +00:00
|
|
|
if (EC_METHOD_get_field_type(EC_GROUP_method_of(group)) == NID_X9_62_prime_field)
|
2002-08-07 10:49:54 +00:00
|
|
|
{
|
2004-02-22 19:32:53 +00:00
|
|
|
if (!EC_POINT_get_affine_coordinates_GFp(group,
|
2002-08-07 10:49:54 +00:00
|
|
|
point, X, NULL, ctx))
|
|
|
|
{
|
|
|
|
ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP, ERR_R_EC_LIB);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else /* NID_X9_62_characteristic_two_field */
|
|
|
|
{
|
2004-02-22 19:32:53 +00:00
|
|
|
if (!EC_POINT_get_affine_coordinates_GF2m(group,
|
2002-08-07 10:49:54 +00:00
|
|
|
point, X, NULL, ctx))
|
|
|
|
{
|
|
|
|
ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP, ERR_R_EC_LIB);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-02-22 19:32:53 +00:00
|
|
|
if (!BN_nnmod(u1, X, order, ctx))
|
2002-08-07 10:49:54 +00:00
|
|
|
{
|
|
|
|
ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_BN_LIB);
|
2002-02-13 18:21:51 +00:00
|
|
|
goto err;
|
|
|
|
}
|
2004-02-22 19:32:53 +00:00
|
|
|
/* if the signature is correct u1 is equal to sig->r */
|
|
|
|
ret = (BN_ucmp(u1, sig->r) == 0);
|
|
|
|
err:
|
|
|
|
BN_CTX_end(ctx);
|
|
|
|
BN_CTX_free(ctx);
|
2002-08-07 10:49:54 +00:00
|
|
|
if (point)
|
|
|
|
EC_POINT_free(point);
|
2004-02-22 19:32:53 +00:00
|
|
|
return ret;
|
2002-02-13 18:21:51 +00:00
|
|
|
}
|