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

/external/chromium_org/third_party/boringssl/src/crypto/ec/
H A Dsimple.c1199 BIGNUM **prod_Z = NULL; local
1221 prod_Z = OPENSSL_malloc(num * sizeof(prod_Z[0]));
1222 if (prod_Z == NULL) {
1225 memset(prod_Z, 0, num * sizeof(prod_Z[0]));
1227 prod_Z[i] = BN_new();
1228 if (prod_Z[i] == NULL) {
1233 /* Set each prod_Z[i] to the product of points[0]->Z .. points[i]->Z,
1237 if (!BN_copy(prod_Z[
[all...]
/external/openssl/crypto/ec/
H A Decp_smpl.c1186 BIGNUM **prod_Z = NULL; local
1205 prod_Z = OPENSSL_malloc(num * sizeof prod_Z[0]);
1206 if (prod_Z == NULL) goto err;
1209 prod_Z[i] = BN_new();
1210 if (prod_Z[i] == NULL) goto err;
1213 /* Set each prod_Z[i] to the product of points[0]->Z .. points[i]->Z,
1218 if (!BN_copy(prod_Z[0], &points[0]->Z)) goto err;
1224 if (!group->meth->field_set_to_one(group, prod_Z[0], ctx)) goto err;
1228 if (!BN_one(prod_Z[
[all...]

Completed in 96 milliseconds