提交 82516e3b 编写于 作者: B Bodo Möller

cofactor is optional in parameter encodings

Submitted by: Nils Larsch
上级 c1862f91
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
* Written by Nils Larsch for the OpenSSL project. * Written by Nils Larsch for the OpenSSL project.
*/ */
/* ==================================================================== /* ====================================================================
* Copyright (c) 2000-2002 The OpenSSL Project. All rights reserved. * Copyright (c) 2000-2003 The OpenSSL Project. All rights reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions * modification, are permitted provided that the following conditions
...@@ -224,7 +224,7 @@ ASN1_SEQUENCE(ECPARAMETERS) = { ...@@ -224,7 +224,7 @@ ASN1_SEQUENCE(ECPARAMETERS) = {
ASN1_SIMPLE(ECPARAMETERS, curve, X9_62_CURVE), ASN1_SIMPLE(ECPARAMETERS, curve, X9_62_CURVE),
ASN1_SIMPLE(ECPARAMETERS, base, ASN1_OCTET_STRING), ASN1_SIMPLE(ECPARAMETERS, base, ASN1_OCTET_STRING),
ASN1_SIMPLE(ECPARAMETERS, order, ASN1_INTEGER), ASN1_SIMPLE(ECPARAMETERS, order, ASN1_INTEGER),
ASN1_SIMPLE(ECPARAMETERS, cofactor, ASN1_INTEGER) ASN1_OPT(ECPARAMETERS, cofactor, ASN1_INTEGER)
} ASN1_SEQUENCE_END(ECPARAMETERS) } ASN1_SEQUENCE_END(ECPARAMETERS)
DECLARE_ASN1_FUNCTIONS_const(ECPARAMETERS) DECLARE_ASN1_FUNCTIONS_const(ECPARAMETERS)
...@@ -715,17 +715,15 @@ static ECPARAMETERS *ec_asn1_group2parameters(const EC_GROUP *group, ...@@ -715,17 +715,15 @@ static ECPARAMETERS *ec_asn1_group2parameters(const EC_GROUP *group,
goto err; goto err;
} }
/* set the cofactor */ /* set the cofactor (optional) */
if (!EC_GROUP_get_cofactor(group, tmp, NULL)) if (EC_GROUP_get_cofactor(group, tmp, NULL))
{ {
ECerr(EC_F_EC_ASN1_GROUP2PARAMETERS, ERR_R_EC_LIB); ret->cofactor = BN_to_ASN1_INTEGER(tmp, ret->cofactor);
goto err; if (ret->cofactor == NULL)
} {
ret->cofactor = BN_to_ASN1_INTEGER(tmp, ret->cofactor); ECerr(EC_F_EC_ASN1_GROUP2PARAMETERS, ERR_R_ASN1_LIB);
if (ret->cofactor == NULL) goto err;
{ }
ECerr(EC_F_EC_ASN1_GROUP2PARAMETERS, ERR_R_ASN1_LIB);
goto err;
} }
ok = 1; ok = 1;
...@@ -978,9 +976,7 @@ static EC_GROUP *ec_asn1_parameters2group(const ECPARAMETERS *params) ...@@ -978,9 +976,7 @@ static EC_GROUP *ec_asn1_parameters2group(const ECPARAMETERS *params)
ret->seed_len = params->curve->seed->length; ret->seed_len = params->curve->seed->length;
} }
/* extract the order, cofactor and generator */ if (!params->order || !params->base || !params->base->data)
if (!params->order || !params->cofactor || !params->base ||
!params->base->data)
{ {
ECerr(EC_F_EC_ASN1_PARAMETERS2GROUP, EC_R_ASN1_ERROR); ECerr(EC_F_EC_ASN1_PARAMETERS2GROUP, EC_R_ASN1_ERROR);
goto err; goto err;
...@@ -988,14 +984,11 @@ static EC_GROUP *ec_asn1_parameters2group(const ECPARAMETERS *params) ...@@ -988,14 +984,11 @@ static EC_GROUP *ec_asn1_parameters2group(const ECPARAMETERS *params)
if ((point = EC_POINT_new(ret)) == NULL) goto err; if ((point = EC_POINT_new(ret)) == NULL) goto err;
a = ASN1_INTEGER_to_BN(params->order, a); /* set the point conversion form */
b = ASN1_INTEGER_to_BN(params->cofactor, b); EC_GROUP_set_point_conversion_form(ret, (point_conversion_form_t)
if (!a || !b) (params->base->data[0] & ~0x01));
{
ECerr(EC_F_EC_ASN1_PARAMETERS2GROUP, ERR_R_ASN1_LIB);
goto err;
}
/* extract the ec point */
if (!EC_POINT_oct2point(ret, point, params->base->data, if (!EC_POINT_oct2point(ret, point, params->base->data,
params->base->length, NULL)) params->base->length, NULL))
{ {
...@@ -1003,10 +996,29 @@ static EC_GROUP *ec_asn1_parameters2group(const ECPARAMETERS *params) ...@@ -1003,10 +996,29 @@ static EC_GROUP *ec_asn1_parameters2group(const ECPARAMETERS *params)
goto err; goto err;
} }
/* set the point conversion form */ /* extract the order */
EC_GROUP_set_point_conversion_form(ret, (point_conversion_form_t) if ((a = ASN1_INTEGER_to_BN(params->order, a)) == NULL)
(params->base->data[0] & ~0x01)); {
ECerr(EC_F_EC_ASN1_PARAMETERS2GROUP, ERR_R_ASN1_LIB);
goto err;
}
/* extract the cofactor (optional) */
if (params->cofactor == NULL)
{
if (b)
{
BN_free(b);
b = NULL;
}
}
else
if ((b = ASN1_INTEGER_to_BN(params->cofactor, b)) == NULL)
{
ECerr(EC_F_EC_ASN1_PARAMETERS2GROUP, ERR_R_ASN1_LIB);
goto err;
}
/* set the generator, order and cofactor (if present) */
if (!EC_GROUP_set_generator(ret, point, a, b)) if (!EC_GROUP_set_generator(ret, point, a, b))
{ {
ECerr(EC_F_EC_ASN1_PARAMETERS2GROUP, ERR_R_EC_LIB); ECerr(EC_F_EC_ASN1_PARAMETERS2GROUP, ERR_R_EC_LIB);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册