Searched refs:prod_Z (Results 1 - 1 of 1) sorted by relevance

/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/ec/
H A Decp_smpl.c1185 BIGNUM **prod_Z = NULL; local
1204 prod_Z = OPENSSL_malloc(num * sizeof prod_Z[0]);
1205 if (prod_Z == NULL) goto err;
1208 prod_Z[i] = BN_new();
1209 if (prod_Z[i] == NULL) goto err;
1212 /* Set each prod_Z[i] to the product of points[0]->Z .. points[i]->Z,
1217 if (!BN_copy(prod_Z[0], &points[0]->Z)) goto err;
1223 if (!group->meth->field_set_to_one(group, prod_Z[0], ctx)) goto err;
1227 if (!BN_one(prod_Z[
[all...]

Completed in 107 milliseconds