Add CRYPTO_EX_DATA; remove EC_EXTRA_DATA

Add CRYPTO_EX_DATA add EndC_KEY_[gs]et_method, From Roumen Petrov.
Had to add various exdata calls to init/copy/free the exdata.
Had to remove const from some EC functions because exdata isn't
const-correct. :(
Also remove EC_EXTRA_DATA and use a union to hold the possible
pre-computed values and an enum to tell which value is in the
union. (Rich Salz)

Reviewed-by: Dr. Stephen Henson <steve@openssl.org>
This commit is contained in:
Rich Salz 2016-01-05 13:06:03 -05:00 committed by Rich Salz
parent 8ffcca6586
commit 3aef36ffef
15 changed files with 283 additions and 622 deletions

View File

@ -120,19 +120,16 @@ void EC_KEY_free(EC_KEY *r)
ENGINE_finish(r->engine); ENGINE_finish(r->engine);
#endif #endif
CRYPTO_free_ex_data(CRYPTO_EX_INDEX_EC_KEY, r, &r->ex_data);
EC_GROUP_free(r->group); EC_GROUP_free(r->group);
EC_POINT_free(r->pub_key); EC_POINT_free(r->pub_key);
BN_clear_free(r->priv_key); BN_clear_free(r->priv_key);
EC_EX_DATA_free_all_data(&r->method_data);
OPENSSL_clear_free((void *)r, sizeof(EC_KEY)); OPENSSL_clear_free((void *)r, sizeof(EC_KEY));
} }
EC_KEY *EC_KEY_copy(EC_KEY *dest, const EC_KEY *src) EC_KEY *EC_KEY_copy(EC_KEY *dest, EC_KEY *src)
{ {
EC_EXTRA_DATA *d;
if (dest == NULL || src == NULL) { if (dest == NULL || src == NULL) {
ECerr(EC_F_EC_KEY_COPY, ERR_R_PASSED_NULL_PARAMETER); ECerr(EC_F_EC_KEY_COPY, ERR_R_PASSED_NULL_PARAMETER);
return NULL; return NULL;
@ -176,25 +173,15 @@ EC_KEY *EC_KEY_copy(EC_KEY *dest, const EC_KEY *src)
if (!BN_copy(dest->priv_key, src->priv_key)) if (!BN_copy(dest->priv_key, src->priv_key))
return NULL; return NULL;
} }
/* copy method/extra data */
EC_EX_DATA_free_all_data(&dest->method_data);
for (d = src->method_data; d != NULL; d = d->next) {
void *t = d->dup_func(d->data);
if (t == NULL)
return 0;
if (!EC_EX_DATA_set_data
(&dest->method_data, t, d->dup_func, d->free_func,
d->clear_free_func))
return NULL;
}
/* copy the rest */ /* copy the rest */
dest->enc_flag = src->enc_flag; dest->enc_flag = src->enc_flag;
dest->conv_form = src->conv_form; dest->conv_form = src->conv_form;
dest->version = src->version; dest->version = src->version;
dest->flags = src->flags; dest->flags = src->flags;
if (!CRYPTO_dup_ex_data(CRYPTO_EX_INDEX_EC_KEY,
&dest->ex_data, &src->ex_data))
return NULL;
if (src->meth != dest->meth) { if (src->meth != dest->meth) {
#ifndef OPENSSL_NO_ENGINE #ifndef OPENSSL_NO_ENGINE
@ -211,9 +198,10 @@ EC_KEY *EC_KEY_copy(EC_KEY *dest, const EC_KEY *src)
return dest; return dest;
} }
EC_KEY *EC_KEY_dup(const EC_KEY *ec_key) EC_KEY *EC_KEY_dup(EC_KEY *ec_key)
{ {
EC_KEY *ret = EC_KEY_new_method(ec_key->engine); EC_KEY *ret = EC_KEY_new_method(ec_key->engine);
if (ret == NULL) if (ret == NULL)
return NULL; return NULL;
if (EC_KEY_copy(ret, ec_key) == NULL) { if (EC_KEY_copy(ret, ec_key) == NULL) {
@ -513,41 +501,6 @@ void EC_KEY_set_conv_form(EC_KEY *key, point_conversion_form_t cform)
EC_GROUP_set_point_conversion_form(key->group, cform); EC_GROUP_set_point_conversion_form(key->group, cform);
} }
void *EC_KEY_get_key_method_data(EC_KEY *key,
void *(*dup_func) (void *),
void (*free_func) (void *),
void (*clear_free_func) (void *))
{
void *ret;
CRYPTO_r_lock(CRYPTO_LOCK_EC);
ret =
EC_EX_DATA_get_data(key->method_data, dup_func, free_func,
clear_free_func);
CRYPTO_r_unlock(CRYPTO_LOCK_EC);
return ret;
}
void *EC_KEY_insert_key_method_data(EC_KEY *key, void *data,
void *(*dup_func) (void *),
void (*free_func) (void *),
void (*clear_free_func) (void *))
{
EC_EXTRA_DATA *ex_data;
CRYPTO_w_lock(CRYPTO_LOCK_EC);
ex_data =
EC_EX_DATA_get_data(key->method_data, dup_func, free_func,
clear_free_func);
if (ex_data == NULL)
EC_EX_DATA_set_data(&key->method_data, data, dup_func, free_func,
clear_free_func);
CRYPTO_w_unlock(CRYPTO_LOCK_EC);
return ex_data;
}
void EC_KEY_set_asn1_flag(EC_KEY *key, int flag) void EC_KEY_set_asn1_flag(EC_KEY *key, int flag)
{ {
if (key->group != NULL) if (key->group != NULL)

View File

@ -93,6 +93,31 @@ void EC_KEY_set_default_method(const EC_KEY_METHOD *meth)
default_ec_key_meth = meth; default_ec_key_meth = meth;
} }
const EC_KEY_METHOD *EC_KEY_get_method(const EC_KEY *key)
{
return key->meth;
}
int EC_KEY_set_method(EC_KEY *key, const EC_KEY_METHOD *meth)
{
void (*finish)(EC_KEY *key) = key->meth->finish;
if (finish != NULL)
finish(key);
#ifndef OPENSSL_NO_ENGINE
if (key->engine != NULL) {
ENGINE_finish(key->engine);
key->engine = NULL;
}
#endif
key->meth = meth;
if (meth->init != NULL)
return meth->init(key);
return 1;
}
EC_KEY *EC_KEY_new_method(ENGINE *engine) EC_KEY *EC_KEY_new_method(ENGINE *engine)
{ {
EC_KEY *ret = OPENSSL_zalloc(sizeof(*ret)); EC_KEY *ret = OPENSSL_zalloc(sizeof(*ret));
@ -101,6 +126,11 @@ EC_KEY *EC_KEY_new_method(ENGINE *engine)
ECerr(EC_F_EC_KEY_NEW_METHOD, ERR_R_MALLOC_FAILURE); ECerr(EC_F_EC_KEY_NEW_METHOD, ERR_R_MALLOC_FAILURE);
return (NULL); return (NULL);
} }
if (!CRYPTO_new_ex_data(CRYPTO_EX_INDEX_EC_KEY, ret, &ret->ex_data)) {
OPENSSL_free(ret);
return NULL;
}
ret->meth = EC_KEY_get_default_method(); ret->meth = EC_KEY_get_default_method();
#ifndef OPENSSL_NO_ENGINE #ifndef OPENSSL_NO_ENGINE
if (engine != NULL) { if (engine != NULL) {
@ -146,8 +176,8 @@ int ECDH_compute_key(void *out, size_t outlen, const EC_POINT *pub_key,
EC_KEY_METHOD *EC_KEY_METHOD_new(const EC_KEY_METHOD *meth) EC_KEY_METHOD *EC_KEY_METHOD_new(const EC_KEY_METHOD *meth)
{ {
EC_KEY_METHOD *ret; EC_KEY_METHOD *ret = OPENSSL_zalloc(sizeof(*meth));
ret = OPENSSL_zalloc(sizeof(*meth));
if (ret == NULL) if (ret == NULL)
return NULL; return NULL;
if (meth != NULL) if (meth != NULL)

View File

@ -198,13 +198,14 @@ struct ec_method_st {
int (*field_set_to_one) (const EC_GROUP *, BIGNUM *r, BN_CTX *); int (*field_set_to_one) (const EC_GROUP *, BIGNUM *r, BN_CTX *);
} /* EC_METHOD */ ; } /* EC_METHOD */ ;
typedef struct ec_extra_data_st { /*
struct ec_extra_data_st *next; * Types and functions to manipulate pre-computed values.
void *data; */
void *(*dup_func) (void *); typedef struct nistp224_pre_comp_st NISTP224_PRE_COMP;
void (*free_func) (void *); typedef struct nistp256_pre_comp_st NISTP256_PRE_COMP;
void (*clear_free_func) (void *); typedef struct nistp512_pre_comp_st NISTP521_PRE_COMP;
} EC_EXTRA_DATA; /* used in EC_GROUP */ typedef struct nistz256_pre_comp_st NISTZ256_PRE_COMP;
typedef struct ec_pre_comp_st EC_PRE_COMP;
struct ec_group_st { struct ec_group_st {
const EC_METHOD *meth; const EC_METHOD *meth;
@ -216,7 +217,6 @@ struct ec_group_st {
unsigned char *seed; /* optional seed for parameters (appears in unsigned char *seed; /* optional seed for parameters (appears in
* ASN1) */ * ASN1) */
size_t seed_len; size_t seed_len;
EC_EXTRA_DATA *extra_data; /* linked list */
/* /*
* The following members are handled by the method functions, even if * The following members are handled by the method functions, even if
* they appear generic * they appear generic
@ -254,8 +254,26 @@ struct ec_group_st {
BN_CTX *); BN_CTX *);
/* data for ECDSA inverse */ /* data for ECDSA inverse */
BN_MONT_CTX *mont_data; BN_MONT_CTX *mont_data;
/* precomputed values for speed. */
enum {
pct_none,
pct_nistp224, pct_nistp256, pct_nistp521, pct_nistz256,
pct_ec } pre_comp_type;
union {
NISTP224_PRE_COMP *nistp224;
NISTP256_PRE_COMP *nistp256;
NISTP521_PRE_COMP *nistp521;
NISTZ256_PRE_COMP *nistz256;
EC_PRE_COMP *ec;
} pre_comp;
} /* EC_GROUP */ ; } /* EC_GROUP */ ;
#define SETPRECOMP(g, type, pre) \
g->pre_comp_type = pct_##type, g->pre_comp.type = pre
#define HAVEPRECOMP(g, type) \
g->pre_comp_type == pct_##type && g->pre_comp.type != NULL
struct ec_key_st { struct ec_key_st {
const EC_KEY_METHOD *meth; const EC_KEY_METHOD *meth;
ENGINE *engine; ENGINE *engine;
@ -267,31 +285,9 @@ struct ec_key_st {
point_conversion_form_t conv_form; point_conversion_form_t conv_form;
int references; int references;
int flags; int flags;
EC_EXTRA_DATA *method_data; CRYPTO_EX_DATA ex_data;
} /* EC_KEY */ ; } /* EC_KEY */ ;
/*
* Basically a 'mixin' for extra data, but available for EC_GROUPs/EC_KEYs
* only (with visibility limited to 'package' level for now). We use the
* function pointers as index for retrieval; this obviates global
* ex_data-style index tables.
*/
int EC_EX_DATA_set_data(EC_EXTRA_DATA **, void *data,
void *(*dup_func) (void *),
void (*free_func) (void *),
void (*clear_free_func) (void *));
void *EC_EX_DATA_get_data(const EC_EXTRA_DATA *, void *(*dup_func) (void *),
void (*free_func) (void *),
void (*clear_free_func) (void *));
void EC_EX_DATA_free_data(EC_EXTRA_DATA **, void *(*dup_func) (void *),
void (*free_func) (void *),
void (*clear_free_func) (void *));
void EC_EX_DATA_clear_free_data(EC_EXTRA_DATA **, void *(*dup_func) (void *),
void (*free_func) (void *),
void (*clear_free_func) (void *));
void EC_EX_DATA_free_all_data(EC_EXTRA_DATA **);
void EC_EX_DATA_clear_free_all_data(EC_EXTRA_DATA **);
struct ec_point_st { struct ec_point_st {
const EC_METHOD *meth; const EC_METHOD *meth;
/* /*
@ -306,6 +302,18 @@ struct ec_point_st {
* special case */ * special case */
} /* EC_POINT */ ; } /* EC_POINT */ ;
NISTP224_PRE_COMP *EC_nistp224_pre_comp_dup(NISTP224_PRE_COMP *);
NISTP256_PRE_COMP *EC_nistp256_pre_comp_dup(NISTP256_PRE_COMP *);
NISTP521_PRE_COMP *EC_nistp521_pre_comp_dup(NISTP521_PRE_COMP *);
NISTZ256_PRE_COMP *EC_nistz256_pre_comp_dup(NISTZ256_PRE_COMP *);
NISTP256_PRE_COMP *EC_nistp256_pre_comp_dup(NISTP256_PRE_COMP *);
EC_PRE_COMP *EC_ec_pre_comp_dup(EC_PRE_COMP *);
void EC_nistp224_pre_comp_free(NISTP224_PRE_COMP *);
void EC_nistp256_pre_comp_free(NISTP256_PRE_COMP *);
void EC_nistp521_pre_comp_free(NISTP521_PRE_COMP *);
void EC_nistz256_pre_comp_free(NISTZ256_PRE_COMP *);
void EC_ec_pre_comp_free(EC_PRE_COMP *);
/* /*
* method functions in ec_mult.c (ec_lib.c uses these as defaults if * method functions in ec_mult.c (ec_lib.c uses these as defaults if
* group->method->mul is 0) * group->method->mul is 0)

View File

@ -109,6 +109,32 @@ EC_GROUP *EC_GROUP_new(const EC_METHOD *meth)
return NULL; return NULL;
} }
static void ec_group_free_precomp(EC_GROUP *group)
{
switch (group->pre_comp_type) {
default:
break;
case pct_nistz256:
EC_nistz256_pre_comp_free(group->pre_comp.nistz256);
break;
#ifndef OPENSSL_NO_EC_NISTP_64_GCC_128
case pct_nistp224:
EC_nistp224_pre_comp_free(group->pre_comp.nistp224);
break;
case pct_nistp256:
EC_nistp256_pre_comp_free(group->pre_comp.nistp256);
break;
case pct_nistp521:
EC_nistp521_pre_comp_free(group->pre_comp.nistp521);
break;
#endif
case pct_ec:
EC_ec_pre_comp_free(group->pre_comp.ec);
break;
}
group->pre_comp.ec = NULL;
}
void EC_GROUP_free(EC_GROUP *group) void EC_GROUP_free(EC_GROUP *group)
{ {
if (!group) if (!group)
@ -117,7 +143,7 @@ void EC_GROUP_free(EC_GROUP *group)
if (group->meth->group_finish != 0) if (group->meth->group_finish != 0)
group->meth->group_finish(group); group->meth->group_finish(group);
EC_EX_DATA_free_all_data(&group->extra_data); ec_group_free_precomp(group);
BN_MONT_CTX_free(group->mont_data); BN_MONT_CTX_free(group->mont_data);
EC_POINT_free(group->generator); EC_POINT_free(group->generator);
BN_free(group->order); BN_free(group->order);
@ -136,10 +162,8 @@ void EC_GROUP_clear_free(EC_GROUP *group)
else if (group->meth->group_finish != 0) else if (group->meth->group_finish != 0)
group->meth->group_finish(group); group->meth->group_finish(group);
EC_EX_DATA_clear_free_all_data(&group->extra_data); ec_group_free_precomp(group);
BN_MONT_CTX_free(group->mont_data); BN_MONT_CTX_free(group->mont_data);
EC_POINT_clear_free(group->generator); EC_POINT_clear_free(group->generator);
BN_clear_free(group->order); BN_clear_free(group->order);
BN_clear_free(group->cofactor); BN_clear_free(group->cofactor);
@ -149,8 +173,6 @@ void EC_GROUP_clear_free(EC_GROUP *group)
int EC_GROUP_copy(EC_GROUP *dest, const EC_GROUP *src) int EC_GROUP_copy(EC_GROUP *dest, const EC_GROUP *src)
{ {
EC_EXTRA_DATA *d;
if (dest->meth->group_copy == 0) { if (dest->meth->group_copy == 0) {
ECerr(EC_F_EC_GROUP_COPY, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED); ECerr(EC_F_EC_GROUP_COPY, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
return 0; return 0;
@ -162,17 +184,29 @@ int EC_GROUP_copy(EC_GROUP *dest, const EC_GROUP *src)
if (dest == src) if (dest == src)
return 1; return 1;
EC_EX_DATA_free_all_data(&dest->extra_data); /* Copy precomputed */
dest->pre_comp_type = src->pre_comp_type;
for (d = src->extra_data; d != NULL; d = d->next) { switch (src->pre_comp_type) {
void *t = d->dup_func(d->data); default:
dest->pre_comp.ec = NULL;
if (t == NULL) break;
return 0; case pct_nistz256:
if (!EC_EX_DATA_set_data dest->pre_comp.nistz256 = EC_nistz256_pre_comp_dup(src->pre_comp.nistz256);
(&dest->extra_data, t, d->dup_func, d->free_func, break;
d->clear_free_func)) #ifndef OPENSSL_NO_EC_NISTP_64_GCC_128
return 0; case pct_nistp224:
dest->pre_comp.nistp224 = EC_nistp224_pre_comp_dup(src->pre_comp.nistp224);
break;
case pct_nistp256:
dest->pre_comp.nistp256 = EC_nistp256_pre_comp_dup(src->pre_comp.nistp256);
break;
case pct_nistp521:
dest->pre_comp.nistp521 = EC_nistp521_pre_comp_dup(src->pre_comp.nistp521);
break;
#endif
case pct_ec:
dest->pre_comp.ec = EC_ec_pre_comp_dup(src->pre_comp.ec);
break;
} }
if (src->mont_data != NULL) { if (src->mont_data != NULL) {
@ -518,151 +552,6 @@ int EC_GROUP_cmp(const EC_GROUP *a, const EC_GROUP *b, BN_CTX *ctx)
return r; return r;
} }
/* this has 'package' visibility */
int EC_EX_DATA_set_data(EC_EXTRA_DATA **ex_data, void *data,
void *(*dup_func) (void *),
void (*free_func) (void *),
void (*clear_free_func) (void *))
{
EC_EXTRA_DATA *d;
if (ex_data == NULL)
return 0;
for (d = *ex_data; d != NULL; d = d->next) {
if (d->dup_func == dup_func && d->free_func == free_func
&& d->clear_free_func == clear_free_func) {
ECerr(EC_F_EC_EX_DATA_SET_DATA, EC_R_SLOT_FULL);
return 0;
}
}
if (data == NULL)
/* no explicit entry needed */
return 1;
d = OPENSSL_malloc(sizeof(*d));
if (d == NULL)
return 0;
d->data = data;
d->dup_func = dup_func;
d->free_func = free_func;
d->clear_free_func = clear_free_func;
d->next = *ex_data;
*ex_data = d;
return 1;
}
/* this has 'package' visibility */
void *EC_EX_DATA_get_data(const EC_EXTRA_DATA *ex_data,
void *(*dup_func) (void *),
void (*free_func) (void *),
void (*clear_free_func) (void *))
{
const EC_EXTRA_DATA *d;
for (d = ex_data; d != NULL; d = d->next) {
if (d->dup_func == dup_func && d->free_func == free_func
&& d->clear_free_func == clear_free_func)
return d->data;
}
return NULL;
}
/* this has 'package' visibility */
void EC_EX_DATA_free_data(EC_EXTRA_DATA **ex_data,
void *(*dup_func) (void *),
void (*free_func) (void *),
void (*clear_free_func) (void *))
{
EC_EXTRA_DATA **p;
if (ex_data == NULL)
return;
for (p = ex_data; *p != NULL; p = &((*p)->next)) {
if ((*p)->dup_func == dup_func && (*p)->free_func == free_func
&& (*p)->clear_free_func == clear_free_func) {
EC_EXTRA_DATA *next = (*p)->next;
(*p)->free_func((*p)->data);
OPENSSL_free(*p);
*p = next;
return;
}
}
}
/* this has 'package' visibility */
void EC_EX_DATA_clear_free_data(EC_EXTRA_DATA **ex_data,
void *(*dup_func) (void *),
void (*free_func) (void *),
void (*clear_free_func) (void *))
{
EC_EXTRA_DATA **p;
if (ex_data == NULL)
return;
for (p = ex_data; *p != NULL; p = &((*p)->next)) {
if ((*p)->dup_func == dup_func && (*p)->free_func == free_func
&& (*p)->clear_free_func == clear_free_func) {
EC_EXTRA_DATA *next = (*p)->next;
(*p)->clear_free_func((*p)->data);
OPENSSL_free(*p);
*p = next;
return;
}
}
}
/* this has 'package' visibility */
void EC_EX_DATA_free_all_data(EC_EXTRA_DATA **ex_data)
{
EC_EXTRA_DATA *d;
if (ex_data == NULL)
return;
d = *ex_data;
while (d) {
EC_EXTRA_DATA *next = d->next;
d->free_func(d->data);
OPENSSL_free(d);
d = next;
}
*ex_data = NULL;
}
/* this has 'package' visibility */
void EC_EX_DATA_clear_free_all_data(EC_EXTRA_DATA **ex_data)
{
EC_EXTRA_DATA *d;
if (ex_data == NULL)
return;
d = *ex_data;
while (d) {
EC_EXTRA_DATA *next = d->next;
d->clear_free_func(d->data);
OPENSSL_free(d);
d = next;
}
*ex_data = NULL;
}
/* functions for EC_POINT objects */ /* functions for EC_POINT objects */
EC_POINT *EC_POINT_new(const EC_GROUP *group) EC_POINT *EC_POINT_new(const EC_GROUP *group)
@ -1091,3 +980,13 @@ int ec_precompute_mont_data(EC_GROUP *group)
BN_CTX_free(ctx); BN_CTX_free(ctx);
return ret; return ret;
} }
int EC_KEY_set_ex_data(EC_KEY *key, int idx, void *arg)
{
return CRYPTO_set_ex_data(&key->ex_data, idx, arg);
}
void *EC_KEY_get_ex_data(const EC_KEY *key, int idx)
{
return CRYPTO_get_ex_data(&key->ex_data, idx);
}

View File

@ -75,7 +75,7 @@
*/ */
/* structure for precomputed multiples of the generator */ /* structure for precomputed multiples of the generator */
typedef struct ec_pre_comp_st { struct ec_pre_comp_st {
const EC_GROUP *group; /* parent EC_GROUP object */ const EC_GROUP *group; /* parent EC_GROUP object */
size_t blocksize; /* block size for wNAF splitting */ size_t blocksize; /* block size for wNAF splitting */
size_t numblocks; /* max. number of blocks for which we have size_t numblocks; /* max. number of blocks for which we have
@ -86,12 +86,7 @@ typedef struct ec_pre_comp_st {
* objects followed by a NULL */ * objects followed by a NULL */
size_t num; /* numblocks * 2^(w-1) */ size_t num; /* numblocks * 2^(w-1) */
int references; int references;
} EC_PRE_COMP; };
/* functions to manage EC_PRE_COMP within the EC_GROUP extra_data framework */
static void *ec_pre_comp_dup(void *);
static void ec_pre_comp_free(void *);
static void ec_pre_comp_clear_free(void *);
static EC_PRE_COMP *ec_pre_comp_new(const EC_GROUP *group) static EC_PRE_COMP *ec_pre_comp_new(const EC_GROUP *group)
{ {
@ -112,63 +107,29 @@ static EC_PRE_COMP *ec_pre_comp_new(const EC_GROUP *group)
return ret; return ret;
} }
static void *ec_pre_comp_dup(void *src_) EC_PRE_COMP *EC_ec_pre_comp_dup(EC_PRE_COMP *pre)
{ {
EC_PRE_COMP *src = src_; if (pre != NULL)
CRYPTO_add(&pre->references, 1, CRYPTO_LOCK_EC_PRE_COMP);
/* no need to actually copy, these objects never change! */ return pre;
CRYPTO_add(&src->references, 1, CRYPTO_LOCK_EC_PRE_COMP);
return src_;
} }
static void ec_pre_comp_free(void *pre_) void EC_ec_pre_comp_free(EC_PRE_COMP *pre)
{ {
int i; if (pre == NULL
EC_PRE_COMP *pre = pre_; || CRYPTO_add(&pre->references, -1, CRYPTO_LOCK_EC_PRE_COMP) > 0)
if (!pre)
return; return;
i = CRYPTO_add(&pre->references, -1, CRYPTO_LOCK_EC_PRE_COMP); if (pre->points != NULL) {
if (i > 0) EC_POINT **pts;
return;
if (pre->points) { for (pts = pre->points; *pts != NULL; pts++)
EC_POINT **p; EC_POINT_free(*pts);
for (p = pre->points; *p != NULL; p++)
EC_POINT_free(*p);
OPENSSL_free(pre->points); OPENSSL_free(pre->points);
} }
OPENSSL_free(pre); OPENSSL_free(pre);
} }
static void ec_pre_comp_clear_free(void *pre_)
{
int i;
EC_PRE_COMP *pre = pre_;
if (!pre)
return;
i = CRYPTO_add(&pre->references, -1, CRYPTO_LOCK_EC_PRE_COMP);
if (i > 0)
return;
if (pre->points) {
EC_POINT **p;
for (p = pre->points; *p != NULL; p++) {
EC_POINT_clear_free(*p);
OPENSSL_cleanse(p, sizeof(*p));
}
OPENSSL_free(pre->points);
}
OPENSSL_clear_free(pre, sizeof(*pre));
}
/* /*
* TODO: table should be optimised for the wNAF-based implementation, * TODO: table should be optimised for the wNAF-based implementation,
* sometimes smaller windows will give better performance (thus the * sometimes smaller windows will give better performance (thus the
@ -250,10 +211,7 @@ int ec_wNAF_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar,
/* look if we can use precomputed multiples of generator */ /* look if we can use precomputed multiples of generator */
pre_comp = pre_comp = group->pre_comp.ec;
EC_EX_DATA_get_data(group->extra_data, ec_pre_comp_dup,
ec_pre_comp_free, ec_pre_comp_clear_free);
if (pre_comp && pre_comp->numblocks if (pre_comp && pre_comp->numblocks
&& (EC_POINT_cmp(group, generator, pre_comp->points[0], ctx) == && (EC_POINT_cmp(group, generator, pre_comp->points[0], ctx) ==
0)) { 0)) {
@ -604,9 +562,7 @@ int ec_wNAF_precompute_mult(EC_GROUP *group, BN_CTX *ctx)
int ret = 0; int ret = 0;
/* if there is an old EC_PRE_COMP object, throw it away */ /* if there is an old EC_PRE_COMP object, throw it away */
EC_EX_DATA_free_data(&group->extra_data, ec_pre_comp_dup, EC_ec_pre_comp_free(group->pre_comp.ec);
ec_pre_comp_free, ec_pre_comp_clear_free);
if ((pre_comp = ec_pre_comp_new(group)) == NULL) if ((pre_comp = ec_pre_comp_new(group)) == NULL)
return 0; return 0;
@ -728,19 +684,15 @@ int ec_wNAF_precompute_mult(EC_GROUP *group, BN_CTX *ctx)
pre_comp->points = points; pre_comp->points = points;
points = NULL; points = NULL;
pre_comp->num = num; pre_comp->num = num;
SETPRECOMP(group, ec, pre_comp);
if (!EC_EX_DATA_set_data(&group->extra_data, pre_comp,
ec_pre_comp_dup, ec_pre_comp_free,
ec_pre_comp_clear_free))
goto err;
pre_comp = NULL; pre_comp = NULL;
ret = 1; ret = 1;
err: err:
if (ctx != NULL) if (ctx != NULL)
BN_CTX_end(ctx); BN_CTX_end(ctx);
BN_CTX_free(new_ctx); BN_CTX_free(new_ctx);
ec_pre_comp_free(pre_comp); EC_ec_pre_comp_free(pre_comp);
if (points) { if (points) {
EC_POINT **p; EC_POINT **p;
@ -755,10 +707,5 @@ int ec_wNAF_precompute_mult(EC_GROUP *group, BN_CTX *ctx)
int ec_wNAF_have_precompute_mult(const EC_GROUP *group) int ec_wNAF_have_precompute_mult(const EC_GROUP *group)
{ {
if (EC_EX_DATA_get_data return HAVEPRECOMP(group, ec);
(group->extra_data, ec_pre_comp_dup, ec_pre_comp_free,
ec_pre_comp_clear_free) != NULL)
return 1;
else
return 0;
} }

View File

@ -227,10 +227,10 @@ static const felem gmul[2][16][3] = {
}; };
/* Precomputation for the group generator. */ /* Precomputation for the group generator. */
typedef struct { struct nistp224_pre_comp_st {
felem g_pre_comp[2][16][3]; felem g_pre_comp[2][16][3];
int references; int references;
} NISTP224_PRE_COMP; };
const EC_METHOD *EC_GFp_nistp224_method(void) const EC_METHOD *EC_GFp_nistp224_method(void)
{ {
@ -1209,44 +1209,19 @@ static NISTP224_PRE_COMP *nistp224_pre_comp_new()
return ret; return ret;
} }
static void *nistp224_pre_comp_dup(void *src_) NISTP224_PRE_COMP *EC_nistp224_pre_comp_dup(NISTP224_PRE_COMP *p)
{ {
NISTP224_PRE_COMP *src = src_; if (p != NULL)
CRYPTO_add(&p->references, 1, CRYPTO_LOCK_EC_PRE_COMP);
/* no need to actually copy, these objects never change! */ return p;
CRYPTO_add(&src->references, 1, CRYPTO_LOCK_EC_PRE_COMP);
return src_;
} }
static void nistp224_pre_comp_free(void *pre_) void EC_nistp224_pre_comp_free(NISTP224_PRE_COMP *p)
{ {
int i; if (p == NULL
NISTP224_PRE_COMP *pre = pre_; || CRYPTO_add(&p->references, -1, CRYPTO_LOCK_EC_PRE_COMP) > 0)
if (!pre)
return; return;
OPENSSL_free(p);
i = CRYPTO_add(&pre->references, -1, CRYPTO_LOCK_EC_PRE_COMP);
if (i > 0)
return;
OPENSSL_free(pre);
}
static void nistp224_pre_comp_clear_free(void *pre_)
{
int i;
NISTP224_PRE_COMP *pre = pre_;
if (!pre)
return;
i = CRYPTO_add(&pre->references, -1, CRYPTO_LOCK_EC_PRE_COMP);
if (i > 0)
return;
OPENSSL_clear_free(pre, sizeof(*pre));
} }
/******************************************************************************/ /******************************************************************************/
@ -1413,10 +1388,7 @@ int ec_GFp_nistp224_points_mul(const EC_GROUP *group, EC_POINT *r,
goto err; goto err;
if (scalar != NULL) { if (scalar != NULL) {
pre = EC_EX_DATA_get_data(group->extra_data, pre = group->pre_comp.nistp224;
nistp224_pre_comp_dup,
nistp224_pre_comp_free,
nistp224_pre_comp_clear_free);
if (pre) if (pre)
/* we have precomputation, try to use it */ /* we have precomputation, try to use it */
g_pre_comp = (const felem(*)[16][3])pre->g_pre_comp; g_pre_comp = (const felem(*)[16][3])pre->g_pre_comp;
@ -1587,9 +1559,7 @@ int ec_GFp_nistp224_precompute_mult(EC_GROUP *group, BN_CTX *ctx)
felem tmp_felems[32]; felem tmp_felems[32];
/* throw away old precomputation */ /* throw away old precomputation */
EC_EX_DATA_free_data(&group->extra_data, nistp224_pre_comp_dup, EC_nistp224_pre_comp_free(group->pre_comp.nistp224);
nistp224_pre_comp_free,
nistp224_pre_comp_clear_free);
if (ctx == NULL) if (ctx == NULL)
if ((ctx = new_ctx = BN_CTX_new()) == NULL) if ((ctx = new_ctx = BN_CTX_new()) == NULL)
return 0; return 0;
@ -1692,29 +1662,20 @@ int ec_GFp_nistp224_precompute_mult(EC_GROUP *group, BN_CTX *ctx)
} }
make_points_affine(31, &(pre->g_pre_comp[0][1]), tmp_felems); make_points_affine(31, &(pre->g_pre_comp[0][1]), tmp_felems);
if (!EC_EX_DATA_set_data(&group->extra_data, pre, nistp224_pre_comp_dup, SETPRECOMP(group, nistp224, pre);
nistp224_pre_comp_free,
nistp224_pre_comp_clear_free))
goto err;
ret = 1;
pre = NULL; pre = NULL;
ret = 1;
err: err:
BN_CTX_end(ctx); BN_CTX_end(ctx);
EC_POINT_free(generator); EC_POINT_free(generator);
BN_CTX_free(new_ctx); BN_CTX_free(new_ctx);
nistp224_pre_comp_free(pre); EC_nistp224_pre_comp_free(pre);
return ret; return ret;
} }
int ec_GFp_nistp224_have_precompute_mult(const EC_GROUP *group) int ec_GFp_nistp224_have_precompute_mult(const EC_GROUP *group)
{ {
if (EC_EX_DATA_get_data(group->extra_data, nistp224_pre_comp_dup, return HAVEPRECOMP(group, nistp224);
nistp224_pre_comp_free,
nistp224_pre_comp_clear_free)
!= NULL)
return 1;
else
return 0;
} }
#else #else

View File

@ -1756,10 +1756,10 @@ static void batch_mul(felem x_out, felem y_out, felem z_out,
} }
/* Precomputation for the group generator. */ /* Precomputation for the group generator. */
typedef struct { struct nistp256_pre_comp_st {
smallfelem g_pre_comp[2][16][3]; smallfelem g_pre_comp[2][16][3];
int references; int references;
} NISTP256_PRE_COMP; };
const EC_METHOD *EC_GFp_nistp256_method(void) const EC_METHOD *EC_GFp_nistp256_method(void)
{ {
@ -1826,46 +1826,21 @@ static NISTP256_PRE_COMP *nistp256_pre_comp_new()
return ret; return ret;
} }
static void *nistp256_pre_comp_dup(void *src_) NISTP256_PRE_COMP *EC_nistp256_pre_comp_dup(NISTP256_PRE_COMP *p)
{ {
NISTP256_PRE_COMP *src = src_; if (p != NULL)
CRYPTO_add(&p->references, 1, CRYPTO_LOCK_EC_PRE_COMP);
/* no need to actually copy, these objects never change! */ return p;
CRYPTO_add(&src->references, 1, CRYPTO_LOCK_EC_PRE_COMP);
return src_;
} }
static void nistp256_pre_comp_free(void *pre_) void EC_nistp256_pre_comp_free(NISTP256_PRE_COMP *pre)
{ {
int i; if (pre == NULL
NISTP256_PRE_COMP *pre = pre_; || CRYPTO_add(&pre->references, -1, CRYPTO_LOCK_EC_PRE_COMP) > 0)
if (!pre)
return; return;
i = CRYPTO_add(&pre->references, -1, CRYPTO_LOCK_EC_PRE_COMP);
if (i > 0)
return;
OPENSSL_free(pre); OPENSSL_free(pre);
} }
static void nistp256_pre_comp_clear_free(void *pre_)
{
int i;
NISTP256_PRE_COMP *pre = pre_;
if (!pre)
return;
i = CRYPTO_add(&pre->references, -1, CRYPTO_LOCK_EC_PRE_COMP);
if (i > 0)
return;
OPENSSL_clear_free(pre, sizeof(*pre));
}
/******************************************************************************/ /******************************************************************************/
/* /*
* OPENSSL EC_METHOD FUNCTIONS * OPENSSL EC_METHOD FUNCTIONS
@ -2031,10 +2006,7 @@ int ec_GFp_nistp256_points_mul(const EC_GROUP *group, EC_POINT *r,
goto err; goto err;
if (scalar != NULL) { if (scalar != NULL) {
pre = EC_EX_DATA_get_data(group->extra_data, pre = group->pre_comp.nistp256;
nistp256_pre_comp_dup,
nistp256_pre_comp_free,
nistp256_pre_comp_clear_free);
if (pre) if (pre)
/* we have precomputation, try to use it */ /* we have precomputation, try to use it */
g_pre_comp = (const smallfelem(*)[16][3])pre->g_pre_comp; g_pre_comp = (const smallfelem(*)[16][3])pre->g_pre_comp;
@ -2212,9 +2184,7 @@ int ec_GFp_nistp256_precompute_mult(EC_GROUP *group, BN_CTX *ctx)
felem x_tmp, y_tmp, z_tmp; felem x_tmp, y_tmp, z_tmp;
/* throw away old precomputation */ /* throw away old precomputation */
EC_EX_DATA_free_data(&group->extra_data, nistp256_pre_comp_dup, EC_nistp256_pre_comp_free(group->pre_comp.nistp256);
nistp256_pre_comp_free,
nistp256_pre_comp_clear_free);
if (ctx == NULL) if (ctx == NULL)
if ((ctx = new_ctx = BN_CTX_new()) == NULL) if ((ctx = new_ctx = BN_CTX_new()) == NULL)
return 0; return 0;
@ -2326,29 +2296,21 @@ int ec_GFp_nistp256_precompute_mult(EC_GROUP *group, BN_CTX *ctx)
} }
make_points_affine(31, &(pre->g_pre_comp[0][1]), tmp_smallfelems); make_points_affine(31, &(pre->g_pre_comp[0][1]), tmp_smallfelems);
if (!EC_EX_DATA_set_data(&group->extra_data, pre, nistp256_pre_comp_dup, SETPRECOMP(group, nistp256, pre);
nistp256_pre_comp_free,
nistp256_pre_comp_clear_free))
goto err;
ret = 1;
pre = NULL; pre = NULL;
ret = 1;
err: err:
BN_CTX_end(ctx); BN_CTX_end(ctx);
EC_POINT_free(generator); EC_POINT_free(generator);
BN_CTX_free(new_ctx); BN_CTX_free(new_ctx);
nistp256_pre_comp_free(pre); EC_nistp256_pre_comp_free(pre);
return ret; return ret;
} }
int ec_GFp_nistp256_have_precompute_mult(const EC_GROUP *group) int ec_GFp_nistp256_have_precompute_mult(const EC_GROUP *group)
{ {
if (EC_EX_DATA_get_data(group->extra_data, nistp256_pre_comp_dup, return HAVEPRECOMP(group, nistp256);
nistp256_pre_comp_free,
nistp256_pre_comp_clear_free)
!= NULL)
return 1;
else
return 0;
} }
#else #else
static void *dummy = &dummy; static void *dummy = &dummy;

View File

@ -1585,10 +1585,10 @@ static void batch_mul(felem x_out, felem y_out, felem z_out,
} }
/* Precomputation for the group generator. */ /* Precomputation for the group generator. */
typedef struct { struct nistp512_pre_comp_st {
felem g_pre_comp[16][3]; felem g_pre_comp[16][3];
int references; int references;
} NISTP521_PRE_COMP; };
const EC_METHOD *EC_GFp_nistp521_method(void) const EC_METHOD *EC_GFp_nistp521_method(void)
{ {
@ -1654,44 +1654,19 @@ static NISTP521_PRE_COMP *nistp521_pre_comp_new()
return ret; return ret;
} }
static void *nistp521_pre_comp_dup(void *src_) NISTP521_PRE_COMP *EC_nistp521_pre_comp_dup(NISTP521_PRE_COMP *p)
{ {
NISTP521_PRE_COMP *src = src_; if (p != NULL)
CRYPTO_add(&p->references, 1, CRYPTO_LOCK_EC_PRE_COMP);
/* no need to actually copy, these objects never change! */ return p;
CRYPTO_add(&src->references, 1, CRYPTO_LOCK_EC_PRE_COMP);
return src_;
} }
static void nistp521_pre_comp_free(void *pre_) void EC_nistp521_pre_comp_free(NISTP521_PRE_COMP *p)
{ {
int i; if (p == NULL
NISTP521_PRE_COMP *pre = pre_; || CRYPTO_add(&p->references, -1, CRYPTO_LOCK_EC_PRE_COMP) > 0)
if (!pre)
return; return;
OPENSSL_free(p);
i = CRYPTO_add(&pre->references, -1, CRYPTO_LOCK_EC_PRE_COMP);
if (i > 0)
return;
OPENSSL_free(pre);
}
static void nistp521_pre_comp_clear_free(void *pre_)
{
int i;
NISTP521_PRE_COMP *pre = pre_;
if (!pre)
return;
i = CRYPTO_add(&pre->references, -1, CRYPTO_LOCK_EC_PRE_COMP);
if (i > 0)
return;
OPENSSL_clear_free(pre, sizeof(*pre));
} }
/******************************************************************************/ /******************************************************************************/
@ -1858,10 +1833,7 @@ int ec_GFp_nistp521_points_mul(const EC_GROUP *group, EC_POINT *r,
goto err; goto err;
if (scalar != NULL) { if (scalar != NULL) {
pre = EC_EX_DATA_get_data(group->extra_data, pre = group->pre_comp.nistp521;
nistp521_pre_comp_dup,
nistp521_pre_comp_free,
nistp521_pre_comp_clear_free);
if (pre) if (pre)
/* we have precomputation, try to use it */ /* we have precomputation, try to use it */
g_pre_comp = &pre->g_pre_comp[0]; g_pre_comp = &pre->g_pre_comp[0];
@ -2036,9 +2008,7 @@ int ec_GFp_nistp521_precompute_mult(EC_GROUP *group, BN_CTX *ctx)
felem tmp_felems[16]; felem tmp_felems[16];
/* throw away old precomputation */ /* throw away old precomputation */
EC_EX_DATA_free_data(&group->extra_data, nistp521_pre_comp_dup, EC_nistp521_pre_comp_free(group->pre_comp.nistp521);
nistp521_pre_comp_free,
nistp521_pre_comp_clear_free);
if (ctx == NULL) if (ctx == NULL)
if ((ctx = new_ctx = BN_CTX_new()) == NULL) if ((ctx = new_ctx = BN_CTX_new()) == NULL)
return 0; return 0;
@ -2121,29 +2091,20 @@ int ec_GFp_nistp521_precompute_mult(EC_GROUP *group, BN_CTX *ctx)
} }
make_points_affine(15, &(pre->g_pre_comp[1]), tmp_felems); make_points_affine(15, &(pre->g_pre_comp[1]), tmp_felems);
if (!EC_EX_DATA_set_data(&group->extra_data, pre, nistp521_pre_comp_dup, SETPRECOMP(group, nistp521, pre);
nistp521_pre_comp_free,
nistp521_pre_comp_clear_free))
goto err;
ret = 1; ret = 1;
pre = NULL; pre = NULL;
err: err:
BN_CTX_end(ctx); BN_CTX_end(ctx);
EC_POINT_free(generator); EC_POINT_free(generator);
BN_CTX_free(new_ctx); BN_CTX_free(new_ctx);
nistp521_pre_comp_free(pre); EC_nistp521_pre_comp_free(pre);
return ret; return ret;
} }
int ec_GFp_nistp521_have_precompute_mult(const EC_GROUP *group) int ec_GFp_nistp521_have_precompute_mult(const EC_GROUP *group)
{ {
if (EC_EX_DATA_get_data(group->extra_data, nistp521_pre_comp_dup, return HAVEPRECOMP(group, nistp512);
nistp521_pre_comp_free,
nistp521_pre_comp_clear_free)
!= NULL)
return 1;
else
return 0;
} }
#else #else

View File

@ -65,7 +65,7 @@ typedef struct {
typedef P256_POINT_AFFINE PRECOMP256_ROW[64]; typedef P256_POINT_AFFINE PRECOMP256_ROW[64];
/* structure for precomputed multiples of the generator */ /* structure for precomputed multiples of the generator */
typedef struct ec_pre_comp_st { struct nistz256_pre_comp_st {
const EC_GROUP *group; /* Parent EC_GROUP object */ const EC_GROUP *group; /* Parent EC_GROUP object */
size_t w; /* Window size */ size_t w; /* Window size */
/* /*
@ -76,7 +76,7 @@ typedef struct ec_pre_comp_st {
PRECOMP256_ROW *precomp; PRECOMP256_ROW *precomp;
void *precomp_storage; void *precomp_storage;
int references; int references;
} EC_PRE_COMP; };
/* Functions implemented in assembly */ /* Functions implemented in assembly */
/* Modular mul by 2: res = 2*a mod P */ /* Modular mul by 2: res = 2*a mod P */
@ -127,10 +127,7 @@ static const BN_ULONG ONE[P256_LIMBS] = {
TOBN(0xffffffff, 0xffffffff), TOBN(0x00000000, 0xfffffffe) TOBN(0xffffffff, 0xffffffff), TOBN(0x00000000, 0xfffffffe)
}; };
static void *ecp_nistz256_pre_comp_dup(void *); static NISTZ256_PRE_COMP *ecp_nistz256_pre_comp_new(const EC_GROUP *group);
static void ecp_nistz256_pre_comp_free(void *);
static void ecp_nistz256_pre_comp_clear_free(void *);
static EC_PRE_COMP *ecp_nistz256_pre_comp_new(const EC_GROUP *group);
/* Precomputed tables for the default generator */ /* Precomputed tables for the default generator */
extern const PRECOMP256_ROW ecp_nistz256_precomputed[37]; extern const PRECOMP256_ROW ecp_nistz256_precomputed[37];
@ -763,7 +760,7 @@ __owur static int ecp_nistz256_mult_precompute(EC_GROUP *group, BN_CTX *ctx)
BIGNUM *order; BIGNUM *order;
EC_POINT *P = NULL, *T = NULL; EC_POINT *P = NULL, *T = NULL;
const EC_POINT *generator; const EC_POINT *generator;
EC_PRE_COMP *pre_comp; NISTZ256_PRE_COMP *pre_comp;
BN_CTX *new_ctx = NULL; BN_CTX *new_ctx = NULL;
int i, j, k, ret = 0; int i, j, k, ret = 0;
size_t w; size_t w;
@ -771,11 +768,8 @@ __owur static int ecp_nistz256_mult_precompute(EC_GROUP *group, BN_CTX *ctx)
PRECOMP256_ROW *preComputedTable = NULL; PRECOMP256_ROW *preComputedTable = NULL;
unsigned char *precomp_storage = NULL; unsigned char *precomp_storage = NULL;
/* if there is an old EC_PRE_COMP object, throw it away */ /* if there is an old NISTZ256_PRE_COMP object, throw it away */
EC_EX_DATA_free_data(&group->extra_data, ecp_nistz256_pre_comp_dup, EC_nistz256_pre_comp_free(group->pre_comp.nistz256);
ecp_nistz256_pre_comp_free,
ecp_nistz256_pre_comp_clear_free);
generator = EC_GROUP_get0_generator(group); generator = EC_GROUP_get0_generator(group);
if (generator == NULL) { if (generator == NULL) {
ECerr(EC_F_ECP_NISTZ256_MULT_PRECOMPUTE, EC_R_UNDEFINED_GENERATOR); ECerr(EC_F_ECP_NISTZ256_MULT_PRECOMPUTE, EC_R_UNDEFINED_GENERATOR);
@ -866,18 +860,9 @@ __owur static int ecp_nistz256_mult_precompute(EC_GROUP *group, BN_CTX *ctx)
pre_comp->w = w; pre_comp->w = w;
pre_comp->precomp = preComputedTable; pre_comp->precomp = preComputedTable;
pre_comp->precomp_storage = precomp_storage; pre_comp->precomp_storage = precomp_storage;
precomp_storage = NULL; precomp_storage = NULL;
SETPRECOMP(group, nistz256, pre_comp);
if (!EC_EX_DATA_set_data(&group->extra_data, pre_comp,
ecp_nistz256_pre_comp_dup,
ecp_nistz256_pre_comp_free,
ecp_nistz256_pre_comp_clear_free)) {
goto err;
}
pre_comp = NULL; pre_comp = NULL;
ret = 1; ret = 1;
err: err:
@ -885,7 +870,7 @@ __owur static int ecp_nistz256_mult_precompute(EC_GROUP *group, BN_CTX *ctx)
BN_CTX_end(ctx); BN_CTX_end(ctx);
BN_CTX_free(new_ctx); BN_CTX_free(new_ctx);
ecp_nistz256_pre_comp_free(pre_comp); EC_nistz256_pre_comp_free(pre_comp);
OPENSSL_free(precomp_storage); OPENSSL_free(precomp_storage);
EC_POINT_free(P); EC_POINT_free(P);
EC_POINT_free(T); EC_POINT_free(T);
@ -1135,7 +1120,7 @@ __owur static int ecp_nistz256_points_mul(const EC_GROUP *group,
size_t j; size_t j;
unsigned char p_str[33] = { 0 }; unsigned char p_str[33] = { 0 };
const PRECOMP256_ROW *preComputedTable = NULL; const PRECOMP256_ROW *preComputedTable = NULL;
const EC_PRE_COMP *pre_comp = NULL; const NISTZ256_PRE_COMP *pre_comp = NULL;
const EC_POINT *generator = NULL; const EC_POINT *generator = NULL;
BN_CTX *new_ctx = NULL; BN_CTX *new_ctx = NULL;
const BIGNUM **new_scalars = NULL; const BIGNUM **new_scalars = NULL;
@ -1186,10 +1171,7 @@ __owur static int ecp_nistz256_points_mul(const EC_GROUP *group,
} }
/* look if we can use precomputed multiples of generator */ /* look if we can use precomputed multiples of generator */
pre_comp = pre_comp = group->pre_comp.nistz256;
EC_EX_DATA_get_data(group->extra_data, ecp_nistz256_pre_comp_dup,
ecp_nistz256_pre_comp_free,
ecp_nistz256_pre_comp_clear_free);
if (pre_comp) { if (pre_comp) {
/* /*
@ -1401,14 +1383,14 @@ __owur static int ecp_nistz256_get_affine(const EC_GROUP *group,
return 1; return 1;
} }
static EC_PRE_COMP *ecp_nistz256_pre_comp_new(const EC_GROUP *group) static NISTZ256_PRE_COMP *ecp_nistz256_pre_comp_new(const EC_GROUP *group)
{ {
EC_PRE_COMP *ret = NULL; NISTZ256_PRE_COMP *ret = NULL;
if (!group) if (!group)
return NULL; return NULL;
ret = OPENSSL_malloc(sizeof(*ret)); ret = OPENSSL_zalloc(sizeof(*ret));
if (ret == NULL) { if (ret == NULL) {
ECerr(EC_F_ECP_NISTZ256_PRE_COMP_NEW, ERR_R_MALLOC_FAILURE); ECerr(EC_F_ECP_NISTZ256_PRE_COMP_NEW, ERR_R_MALLOC_FAILURE);
@ -1423,61 +1405,34 @@ static EC_PRE_COMP *ecp_nistz256_pre_comp_new(const EC_GROUP *group)
return ret; return ret;
} }
static void *ecp_nistz256_pre_comp_dup(void *src_) NISTZ256_PRE_COMP *EC_nistz256_pre_comp_dup(NISTZ256_PRE_COMP *p)
{ {
EC_PRE_COMP *src = src_; if (p != NULL)
CRYPTO_add(&p->references, 1, CRYPTO_LOCK_EC_PRE_COMP);
/* no need to actually copy, these objects never change! */ return p;
CRYPTO_add(&src->references, 1, CRYPTO_LOCK_EC_PRE_COMP);
return src_;
} }
static void ecp_nistz256_pre_comp_free(void *pre_) void EC_nistz256_pre_comp_free(NISTZ256_PRE_COMP *pre)
{ {
int i; if (pre == NULL
EC_PRE_COMP *pre = pre_; || CRYPTO_add(&pre->references, -1, CRYPTO_LOCK_EC_PRE_COMP) > 0)
if (!pre)
return; return;
i = CRYPTO_add(&pre->references, -1, CRYPTO_LOCK_EC_PRE_COMP);
if (i > 0)
return;
OPENSSL_free(pre->precomp_storage); OPENSSL_free(pre->precomp_storage);
OPENSSL_free(pre); OPENSSL_free(pre);
} }
static void ecp_nistz256_pre_comp_clear_free(void *pre_)
{
int i;
EC_PRE_COMP *pre = pre_;
if (!pre)
return;
i = CRYPTO_add(&pre->references, -1, CRYPTO_LOCK_EC_PRE_COMP);
if (i > 0)
return;
OPENSSL_clear_free(pre->precomp,
32 * sizeof(unsigned char) * (1 << pre->w) * 2 * 37);
OPENSSL_clear_free(pre, sizeof(*pre));
}
static int ecp_nistz256_window_have_precompute_mult(const EC_GROUP *group) static int ecp_nistz256_window_have_precompute_mult(const EC_GROUP *group)
{ {
/* There is a hard-coded table for the default generator. */ /* There is a hard-coded table for the default generator. */
const EC_POINT *generator = EC_GROUP_get0_generator(group); const EC_POINT *generator = EC_GROUP_get0_generator(group);
if (generator != NULL && ecp_nistz256_is_affine_G(generator)) { if (generator != NULL && ecp_nistz256_is_affine_G(generator)) {
/* There is a hard-coded table for the default generator. */ /* There is a hard-coded table for the default generator. */
return 1; return 1;
} }
return EC_EX_DATA_get_data(group->extra_data, ecp_nistz256_pre_comp_dup, return HAVEPRECOMP(group, nistz256);
ecp_nistz256_pre_comp_free,
ecp_nistz256_pre_comp_clear_free) != NULL;
} }
const EC_METHOD *EC_GFp_nistz256_method(void) const EC_METHOD *EC_GFp_nistz256_method(void)

View File

@ -45,8 +45,7 @@ The specific structures are:
X509_STORE_CTX X509_STORE_CTX
DH DH
DSA DSA
ECDH EC_KEY
ECDSA
RSA RSA
ENGINE ENGINE
UI UI

View File

@ -2,7 +2,7 @@
=head1 NAME =head1 NAME
EC_KEY_new, EC_KEY_get_flags, EC_KEY_set_flags, EC_KEY_clear_flags, EC_KEY_new_by_curve_name, EC_KEY_free, EC_KEY_copy, EC_KEY_dup, EC_KEY_up_ref, EC_KEY_get0_group, EC_KEY_set_group, EC_KEY_get0_private_key, EC_KEY_set_private_key, EC_KEY_get0_public_key, EC_KEY_set_public_key, EC_KEY_get_enc_flags, EC_KEY_set_enc_flags, EC_KEY_get_conv_form, EC_KEY_set_conv_form, EC_KEY_get_key_method_data, EC_KEY_insert_key_method_data, EC_KEY_set_asn1_flag, EC_KEY_precompute_mult, EC_KEY_generate_key, EC_KEY_check_key, EC_KEY_set_public_key_affine_coordinates - Functions for creating, destroying and manipulating B<EC_KEY> objects. EC_KEY_new, EC_KEY_get_flags, EC_KEY_set_flags, EC_KEY_clear_flags, EC_KEY_new_by_curve_name, EC_KEY_free, EC_KEY_copy, EC_KEY_dup, EC_KEY_up_ref, EC_KEY_get0_group, EC_KEY_set_group, EC_KEY_get0_private_key, EC_KEY_set_private_key, EC_KEY_get0_public_key, EC_KEY_set_public_key, EC_KEY_get_enc_flags, EC_KEY_set_enc_flags, EC_KEY_get_conv_form, EC_KEY_set_conv_form, EC_KEY_set_asn1_flag, EC_KEY_precompute_mult, EC_KEY_generate_key, EC_KEY_check_key, EC_KEY_set_public_key_affine_coordinates - Functions for creating, destroying and manipulating B<EC_KEY> objects.
=head1 SYNOPSIS =head1 SYNOPSIS
@ -26,76 +26,71 @@ EC_KEY_new, EC_KEY_get_flags, EC_KEY_set_flags, EC_KEY_clear_flags, EC_KEY_new_b
int EC_KEY_set_public_key(EC_KEY *key, const EC_POINT *pub); int EC_KEY_set_public_key(EC_KEY *key, const EC_POINT *pub);
point_conversion_form_t EC_KEY_get_conv_form(const EC_KEY *key); point_conversion_form_t EC_KEY_get_conv_form(const EC_KEY *key);
void EC_KEY_set_conv_form(EC_KEY *eckey, point_conversion_form_t cform); void EC_KEY_set_conv_form(EC_KEY *eckey, point_conversion_form_t cform);
void *EC_KEY_get_key_method_data(EC_KEY *key,
void *(*dup_func)(void *), void (*free_func)(void *), void (*clear_free_func)(void *));
void EC_KEY_insert_key_method_data(EC_KEY *key, void *data,
void *(*dup_func)(void *), void (*free_func)(void *), void (*clear_free_func)(void *));
void EC_KEY_set_asn1_flag(EC_KEY *eckey, int asn1_flag); void EC_KEY_set_asn1_flag(EC_KEY *eckey, int asn1_flag);
int EC_KEY_precompute_mult(EC_KEY *key, BN_CTX *ctx); int EC_KEY_precompute_mult(EC_KEY *key, BN_CTX *ctx);
int EC_KEY_generate_key(EC_KEY *key); int EC_KEY_generate_key(EC_KEY *key);
int EC_KEY_check_key(const EC_KEY *key); int EC_KEY_check_key(const EC_KEY *key);
int EC_KEY_set_public_key_affine_coordinates(EC_KEY *key, BIGNUM *x, BIGNUM *y); int EC_KEY_set_public_key_affine_coordinates(EC_KEY *key, BIGNUM *x, BIGNUM *y);
const EC_KEY_METHOD *EC_KEY_get_method(const EC_KEY *key);
int EC_KEY_set_method(EC_KEY *key, const EC_KEY_METHOD *meth);
=head1 DESCRIPTION =head1 DESCRIPTION
An EC_KEY represents a public key and (optionally) an associated private key. A new EC_KEY (with no associated curve) can be constructed by calling EC_KEY_new. An EC_KEY represents a public key and (optionally) an associated private key. A new EC_KEY (with no associated curve) can be constructed by calling EC_KEY_new().
The reference count for the newly created EC_KEY is initially set to 1. A curve can be associated with the EC_KEY by calling The reference count for the newly created EC_KEY is initially set to 1. A curve can be associated with the EC_KEY by calling
EC_KEY_set_group. EC_KEY_set_group().
Alternatively a new EC_KEY can be constructed by calling EC_KEY_new_by_curve_name and supplying the nid of the associated curve. Refer to L<EC_GROUP_new(3)> for a description of curve names. This function simply wraps calls to EC_KEY_new and Alternatively a new EC_KEY can be constructed by calling EC_KEY_new_by_curve_name() and supplying the nid of the associated curve. Refer to L<EC_GROUP_new(3)> for a description of curve names. This function simply wraps calls to EC_KEY_new() and
EC_GROUP_new_by_curve_name. EC_GROUP_new_by_curve_name().
Calling EC_KEY_free decrements the reference count for the EC_KEY object, and if it has dropped to zero then frees the memory associated Calling EC_KEY_free() decrements the reference count for the EC_KEY object, and if it has dropped to zero then frees the memory associated
with it. with it.
If B<key> is NULL nothing is done. If B<key> is NULL nothing is done.
EC_KEY_copy copies the contents of the EC_KEY in B<src> into B<dest>. EC_KEY_copy() copies the contents of the EC_KEY in B<src> into B<dest>.
EC_KEY_dup creates a new EC_KEY object and copies B<ec_key> into it. EC_KEY_dup() creates a new EC_KEY object and copies B<ec_key> into it.
EC_KEY_up_ref increments the reference count associated with the EC_KEY object. EC_KEY_up_ref() increments the reference count associated with the EC_KEY object.
EC_KEY_generate_key generates a new public and private key for the supplied B<eckey> object. B<eckey> must have an EC_GROUP object EC_KEY_generate_key() generates a new public and private key for the supplied B<eckey> object. B<eckey> must have an EC_GROUP object
associated with it before calling this function. The private key is a random integer (0 < priv_key < order, where order is the order associated with it before calling this function. The private key is a random integer (0 < priv_key < order, where order is the order
of the EC_GROUP object). The public key is an EC_POINT on the curve calculated by multiplying the generator for the curve by the of the EC_GROUP object). The public key is an EC_POINT on the curve calculated by multiplying the generator for the curve by the
private key. private key.
EC_KEY_check_key performs various sanity checks on the EC_KEY object to confirm that it is valid. EC_KEY_check_key() performs various sanity checks on the EC_KEY object to confirm that it is valid.
EC_KEY_set_public_key_affine_coordinates sets the public key for B<key> based on its affine co-ordinates, i.e. it constructs an EC_POINT EC_KEY_set_public_key_affine_coordinates() sets the public key for B<key> based on its affine co-ordinates, i.e. it constructs an EC_POINT
object based on the supplied B<x> and B<y> values and sets the public key to be this EC_POINT. It will also performs certain sanity checks object based on the supplied B<x> and B<y> values and sets the public key to be this EC_POINT. It will also performs certain sanity checks
on the key to confirm that it is valid. on the key to confirm that it is valid.
The functions EC_KEY_get0_group, EC_KEY_set_group, EC_KEY_get0_private_key, EC_KEY_set_private_key, EC_KEY_get0_public_key, and EC_KEY_set_public_key get and set the EC_GROUP object, the private key and the EC_POINT public key for the B<key> respectively. The functions EC_KEY_get0_group(), EC_KEY_set_group(), EC_KEY_get0_private_key(), EC_KEY_set_private_key(), EC_KEY_get0_public_key(), and EC_KEY_set_public_key() get and set the EC_GROUP object, the private key and the EC_POINT public key for the B<key> respectively.
The functions EC_KEY_get_conv_form and EC_KEY_set_conv_form get and set the point_conversion_form for the B<key>. For a description The functions EC_KEY_get_conv_form() and EC_KEY_set_conv_form() get and set the point_conversion_form for the B<key>. For a description
of point_conversion_forms please refer to L<EC_POINT_new(3)>. of point_conversion_forms please refer to L<EC_POINT_new(3)>.
EC_KEY_insert_key_method_data and EC_KEY_get_key_method_data enable the caller to associate arbitrary additional data specific to the EC_KEY_set_flags() sets the flags in the B<flags> parameter on the EC_KEY object. Any flags that are already set are left set. The currently defined standard flags are EC_FLAG_NON_FIPS_ALLOW and EC_FLAG_FIPS_CHECKED. In addition there is the flag EC_FLAG_COFACTOR_ECDH which is specific to ECDH and is defined in ecdh.h. EC_KEY_get_flags returns the current flags that are set for this EC_KEY. EC_KEY_clear_flags clears the flags indicated by the B<flags> parameter. All other flags are left in their existing state.
elliptic curve scheme being used with the EC_KEY object. This data is treated as a "black box" by the ec library. The data to be stored by EC_KEY_insert_key_method_data is provided in the B<data> parameter, which must have associated functions for duplicating, freeing and "clear_freeing" the data item. If a subsequent EC_KEY_get_key_method_data call is issued, the functions for duplicating, freeing and "clear_freeing" the data item must be provided again, and they must be the same as they were when the data item was inserted.
EC_KEY_set_flags sets the flags in the B<flags> parameter on the EC_KEY object. Any flags that are already set are left set. The currently defined standard flags are EC_FLAG_NON_FIPS_ALLOW and EC_FLAG_FIPS_CHECKED. In addition there is the flag EC_FLAG_COFACTOR_ECDH which is specific to ECDH and is defined in ecdh.h. EC_KEY_get_flags returns the current flags that are set for this EC_KEY. EC_KEY_clear_flags clears the flags indicated by the B<flags> parameter. All other flags are left in their existing state. EC_KEY_set_asn1_flag() sets the asn1_flag on the underlying EC_GROUP object (if set). Refer to L<EC_GROUP_copy(3)> for further information on the asn1_flag.
EC_KEY_set_asn1_flag sets the asn1_flag on the underlying EC_GROUP object (if set). Refer to L<EC_GROUP_copy(3)> for further information on the asn1_flag. EC_KEY_precompute_mult() stores multiples of the underlying EC_GROUP generator for faster point multiplication. See also L<EC_POINT_add(3)>.
EC_KEY_precompute_mult stores multiples of the underlying EC_GROUP generator for faster point multiplication. See also L<EC_POINT_add(3)>.
=head1 RETURN VALUES =head1 RETURN VALUES
EC_KEY_new, EC_KEY_new_by_curve_name and EC_KEY_dup return a pointer to the newly created EC_KEY object, or NULL on error. EC_KEY_new(), EC_KEY_new_by_curve_name() and EC_KEY_dup() return a pointer to the newly created EC_KEY object, or NULL on error.
EC_KEY_get_flags returns the flags associated with the EC_KEY object as an integer. EC_KEY_get_flags() returns the flags associated with the EC_KEY object as an integer.
EC_KEY_copy returns a pointer to the destination key, or NULL on error. EC_KEY_copy() returns a pointer to the destination key, or NULL on error.
EC_KEY_up_ref, EC_KEY_set_group, EC_KEY_set_private_key, EC_KEY_set_public_key, EC_KEY_precompute_mult, EC_KEY_generate_key, EC_KEY_check_key and EC_KEY_set_public_key_affine_coordinates return 1 on success or 0 on error. EC_KEY_up_ref(), EC_KEY_set_group(), EC_KEY_set_private_key(), EC_KEY_set_public_key(), EC_KEY_precompute_mult(), EC_KEY_generate_key(), EC_KEY_check_key() and EC_KEY_set_public_key_affine_coordinates() return 1 on success or 0 on error.
EC_KEY_get0_group returns the EC_GROUP associated with the EC_KEY. EC_KEY_get0_group() returns the EC_GROUP associated with the EC_KEY.
EC_KEY_get0_private_key returns the private key associated with the EC_KEY. EC_KEY_get0_private_key() returns the private key associated with the EC_KEY.
EC_KEY_get_conv_form return the point_conversion_form for the EC_KEY. EC_KEY_get_conv_form() return the point_conversion_form for the EC_KEY.
=head1 SEE ALSO =head1 SEE ALSO

View File

@ -136,10 +136,6 @@ ec - Elliptic Curve functions
void EC_KEY_set_enc_flags(EC_KEY *eckey, unsigned int flags); void EC_KEY_set_enc_flags(EC_KEY *eckey, unsigned int flags);
point_conversion_form_t EC_KEY_get_conv_form(const EC_KEY *key); point_conversion_form_t EC_KEY_get_conv_form(const EC_KEY *key);
void EC_KEY_set_conv_form(EC_KEY *eckey, point_conversion_form_t cform); void EC_KEY_set_conv_form(EC_KEY *eckey, point_conversion_form_t cform);
void *EC_KEY_get_key_method_data(EC_KEY *key,
void *(*dup_func)(void *), void (*free_func)(void *), void (*clear_free_func)(void *));
void EC_KEY_insert_key_method_data(EC_KEY *key, void *data,
void *(*dup_func)(void *), void (*free_func)(void *), void (*clear_free_func)(void *));
void EC_KEY_set_asn1_flag(EC_KEY *eckey, int asn1_flag); void EC_KEY_set_asn1_flag(EC_KEY *eckey, int asn1_flag);
int EC_KEY_precompute_mult(EC_KEY *key, BN_CTX *ctx); int EC_KEY_precompute_mult(EC_KEY *key, BN_CTX *ctx);
int EC_KEY_generate_key(EC_KEY *key); int EC_KEY_generate_key(EC_KEY *key);
@ -162,7 +158,8 @@ ec - Elliptic Curve functions
#define EVP_PKEY_CTX_set_ec_paramgen_curve_nid(ctx, nid) \ #define EVP_PKEY_CTX_set_ec_paramgen_curve_nid(ctx, nid) \
EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_EC, EVP_PKEY_OP_PARAMGEN, \ EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_EC, EVP_PKEY_OP_PARAMGEN, \
EVP_PKEY_CTRL_EC_PARAMGEN_CURVE_NID, nid, NULL) EVP_PKEY_CTRL_EC_PARAMGEN_CURVE_NID, nid, NULL)
const EC_KEY_METHOD *EC_KEY_get_method(const EC_KEY *key);
int EC_KEY_set_method(EC_KEY *key, const EC_KEY_METHOD *meth);
=head1 DESCRIPTION =head1 DESCRIPTION

View File

@ -273,15 +273,14 @@ DEFINE_STACK_OF(void)
# define CRYPTO_EX_INDEX_X509_STORE_CTX 5 # define CRYPTO_EX_INDEX_X509_STORE_CTX 5
# define CRYPTO_EX_INDEX_DH 6 # define CRYPTO_EX_INDEX_DH 6
# define CRYPTO_EX_INDEX_DSA 7 # define CRYPTO_EX_INDEX_DSA 7
# define CRYPTO_EX_INDEX_ECDH 8 # define CRYPTO_EX_INDEX_EC_KEY 8
# define CRYPTO_EX_INDEX_ECDSA 9 # define CRYPTO_EX_INDEX_RSA 9
# define CRYPTO_EX_INDEX_RSA 10 # define CRYPTO_EX_INDEX_ENGINE 10
# define CRYPTO_EX_INDEX_ENGINE 11 # define CRYPTO_EX_INDEX_UI 11
# define CRYPTO_EX_INDEX_UI 12 # define CRYPTO_EX_INDEX_BIO 12
# define CRYPTO_EX_INDEX_BIO 13 # define CRYPTO_EX_INDEX_STORE 13
# define CRYPTO_EX_INDEX_STORE 14 # define CRYPTO_EX_INDEX_APP 14
# define CRYPTO_EX_INDEX_APP 15 # define CRYPTO_EX_INDEX__COUNT 15
# define CRYPTO_EX_INDEX__COUNT 16
/* /*
* This is the default callbacks, but we can have others as well: this is * This is the default callbacks, but we can have others as well: this is

View File

@ -791,13 +791,13 @@ void EC_KEY_free(EC_KEY *key);
* \param src src EC_KEY object * \param src src EC_KEY object
* \return dst or NULL if an error occurred. * \return dst or NULL if an error occurred.
*/ */
EC_KEY *EC_KEY_copy(EC_KEY *dst, const EC_KEY *src); EC_KEY *EC_KEY_copy(EC_KEY *dst, EC_KEY *src);
/** Creates a new EC_KEY object and copies the content from src to it. /** Creates a new EC_KEY object and copies the content from src to it.
* \param src the source EC_KEY object * \param src the source EC_KEY object
* \return newly created EC_KEY object or NULL if an error occurred. * \return newly created EC_KEY object or NULL if an error occurred.
*/ */
EC_KEY *EC_KEY_dup(const EC_KEY *src); EC_KEY *EC_KEY_dup(EC_KEY *src);
/** Increases the internal reference count of a EC_KEY object. /** Increases the internal reference count of a EC_KEY object.
* \param key EC_KEY object * \param key EC_KEY object
@ -851,23 +851,12 @@ unsigned EC_KEY_get_enc_flags(const EC_KEY *key);
void EC_KEY_set_enc_flags(EC_KEY *eckey, unsigned int flags); void EC_KEY_set_enc_flags(EC_KEY *eckey, unsigned int flags);
point_conversion_form_t EC_KEY_get_conv_form(const EC_KEY *key); point_conversion_form_t EC_KEY_get_conv_form(const EC_KEY *key);
void EC_KEY_set_conv_form(EC_KEY *eckey, point_conversion_form_t cform); void EC_KEY_set_conv_form(EC_KEY *eckey, point_conversion_form_t cform);
/* functions to set/get method specific data */
void *EC_KEY_get_key_method_data(EC_KEY *key, #define EC_KEY_get_ex_new_index(l, p, newf, dupf, freef) \
void *(*dup_func) (void *), CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_EC_KEY, l, p, newf, dupf, freef)
void (*free_func) (void *), int EC_KEY_set_ex_data(EC_KEY *key, int idx, void *arg);
void (*clear_free_func) (void *)); void *EC_KEY_get_ex_data(const EC_KEY *key, int idx);
/** Sets the key method data of an EC_KEY object, if none has yet been set.
* \param key EC_KEY object
* \param data opaque data to install.
* \param dup_func a function that duplicates |data|.
* \param free_func a function that frees |data|.
* \param clear_free_func a function that wipes and frees |data|.
* \return the previously set data pointer, or NULL if |data| was inserted.
*/
void *EC_KEY_insert_key_method_data(EC_KEY *key, void *data,
void *(*dup_func) (void *),
void (*free_func) (void *),
void (*clear_free_func) (void *));
/* wrapper functions for the underlying EC_GROUP object */ /* wrapper functions for the underlying EC_GROUP object */
void EC_KEY_set_asn1_flag(EC_KEY *eckey, int asn1_flag); void EC_KEY_set_asn1_flag(EC_KEY *eckey, int asn1_flag);
@ -1023,6 +1012,8 @@ int EC_KEY_print_fp(FILE *fp, const EC_KEY *key, int off);
const EC_KEY_METHOD *EC_KEY_OpenSSL(void); const EC_KEY_METHOD *EC_KEY_OpenSSL(void);
const EC_KEY_METHOD *EC_KEY_get_default_method(void); const EC_KEY_METHOD *EC_KEY_get_default_method(void);
void EC_KEY_set_default_method(const EC_KEY_METHOD *meth); void EC_KEY_set_default_method(const EC_KEY_METHOD *meth);
const EC_KEY_METHOD *EC_KEY_get_method(const EC_KEY *key);
int EC_KEY_set_method(EC_KEY *key, const EC_KEY_METHOD *meth);
EC_KEY *EC_KEY_new_method(ENGINE *engine); EC_KEY *EC_KEY_new_method(ENGINE *engine);
int ECDH_KDF_X9_62(unsigned char *out, size_t outlen, int ECDH_KDF_X9_62(unsigned char *out, size_t outlen,

View File

@ -2947,7 +2947,7 @@ EC_POINT_bn2point 3398 1_1_0 EXIST::FUNCTION:EC
X509_VERIFY_PARAM_set_depth 3399 1_1_0 EXIST::FUNCTION: X509_VERIFY_PARAM_set_depth 3399 1_1_0 EXIST::FUNCTION:
EC_KEY_set_asn1_flag 3400 1_1_0 EXIST::FUNCTION:EC EC_KEY_set_asn1_flag 3400 1_1_0 EXIST::FUNCTION:EC
STORE_get_method 3401 1_1_0 NOEXIST::FUNCTION: STORE_get_method 3401 1_1_0 NOEXIST::FUNCTION:
EC_KEY_get_key_method_data 3402 1_1_0 EXIST::FUNCTION:EC EC_KEY_get_key_method_data 3402 1_1_0 NOEXIST::FUNCTION:
ECDSA_sign_ex 3403 1_1_0 EXIST::FUNCTION:EC ECDSA_sign_ex 3403 1_1_0 EXIST::FUNCTION:EC
STORE_parse_attrs_end 3404 1_1_0 NOEXIST::FUNCTION: STORE_parse_attrs_end 3404 1_1_0 NOEXIST::FUNCTION:
EC_GROUP_get_point_conversion_form 3405 1_1_0 EXIST:!VMS:FUNCTION:EC EC_GROUP_get_point_conversion_form 3405 1_1_0 EXIST:!VMS:FUNCTION:EC
@ -3113,7 +3113,7 @@ STORE_meth_set_cleanup_fn 3554 1_1_0 NOEXIST::FUNCTION:
STORE_method_set_cleanup_function 3554 1_1_0 NOEXIST::FUNCTION: STORE_method_set_cleanup_function 3554 1_1_0 NOEXIST::FUNCTION:
EC_GROUP_check 3555 1_1_0 EXIST::FUNCTION:EC EC_GROUP_check 3555 1_1_0 EXIST::FUNCTION:EC
d2i_ECPrivateKey_bio 3556 1_1_0 EXIST::FUNCTION:EC d2i_ECPrivateKey_bio 3556 1_1_0 EXIST::FUNCTION:EC
EC_KEY_insert_key_method_data 3557 1_1_0 EXIST::FUNCTION:EC EC_KEY_insert_key_method_data 3557 1_1_0 NOEXIST::FUNCTION:
STORE_meth_get_lock_store_fn 3558 1_1_0 NOEXIST::FUNCTION: STORE_meth_get_lock_store_fn 3558 1_1_0 NOEXIST::FUNCTION:
STORE_method_get_lock_store_function 3558 1_1_0 NOEXIST::FUNCTION: STORE_method_get_lock_store_function 3558 1_1_0 NOEXIST::FUNCTION:
X509_VERIFY_PARAM_get_depth 3559 1_1_0 EXIST::FUNCTION: X509_VERIFY_PARAM_get_depth 3559 1_1_0 EXIST::FUNCTION:
@ -4724,13 +4724,17 @@ CRYPTO_mem_debug_push 5118 1_1_0 EXIST::FUNCTION:CRYPTO_MDEBUG
CRYPTO_set_mem_debug 5119 1_1_0 EXIST::FUNCTION: CRYPTO_set_mem_debug 5119 1_1_0 EXIST::FUNCTION:
CRYPTO_mem_debug_pop 5120 1_1_0 EXIST::FUNCTION:CRYPTO_MDEBUG CRYPTO_mem_debug_pop 5120 1_1_0 EXIST::FUNCTION:CRYPTO_MDEBUG
CRYPTO_secure_actual_size 5121 1_1_0 EXIST::FUNCTION: CRYPTO_secure_actual_size 5121 1_1_0 EXIST::FUNCTION:
lh_get_down_load 5122 1_1_0 EXIST::FUNCTION: EC_KEY_set_ex_data 5122 1_1_0 EXIST::FUNCTION:EC
lh_error 5123 1_1_0 EXIST::FUNCTION: lh_get_down_load 5123 1_1_0 EXIST::FUNCTION:
lh_set_down_load 5124 1_1_0 EXIST::FUNCTION: EC_KEY_get_ex_data 5124 1_1_0 EXIST::FUNCTION:EC
EC_KEY_set_method 5125 1_1_0 EXIST::FUNCTION:EC
EVP_CIPHER_CTX_set_num 5125 1_1_0 EXIST::FUNCTION: EVP_CIPHER_CTX_set_num 5125 1_1_0 EXIST::FUNCTION:
EC_KEY_get_method 5126 1_1_0 EXIST::FUNCTION:EC
EVP_CIPHER_meth_set_init 5126 1_1_0 EXIST::FUNCTION: EVP_CIPHER_meth_set_init 5126 1_1_0 EXIST::FUNCTION:
EVP_CIPHER_impl_ctx_size 5127 1_1_0 EXIST::FUNCTION: EVP_CIPHER_impl_ctx_size 5127 1_1_0 EXIST::FUNCTION:
lh_error 5127 1_1_0 EXIST::FUNCTION:
EVP_CIPHER_meth_set_cleanup 5128 1_1_0 EXIST::FUNCTION: EVP_CIPHER_meth_set_cleanup 5128 1_1_0 EXIST::FUNCTION:
lh_set_down_load 5128 1_1_0 EXIST::FUNCTION:
EVP_CIPHER_meth_free 5129 1_1_0 EXIST::FUNCTION: EVP_CIPHER_meth_free 5129 1_1_0 EXIST::FUNCTION:
EVP_CIPHER_CTX_encrypting 5130 1_1_0 EXIST::FUNCTION: EVP_CIPHER_CTX_encrypting 5130 1_1_0 EXIST::FUNCTION:
EVP_CIPHER_meth_set_set_asn1_params 5131 1_1_0 EXIST::FUNCTION: EVP_CIPHER_meth_set_set_asn1_params 5131 1_1_0 EXIST::FUNCTION: