Searched refs:Z_3 (Results 1 – 1 of 1) sorted by relevance
/external/boringssl/src/crypto/ec/ |
D | simple.c | 462 BIGNUM *Z, *Z_1, *Z_2, *Z_3; in ec_GFp_simple_point_get_affine_coordinates() local 482 Z_3 = BN_CTX_get(ctx); in ec_GFp_simple_point_get_affine_coordinates() 483 if (Z == NULL || Z_1 == NULL || Z_2 == NULL || Z_3 == NULL) { in ec_GFp_simple_point_get_affine_coordinates() 538 if (!group->meth->field_mul(group, Z_3, Z_2, Z_1, ctx)) { in ec_GFp_simple_point_get_affine_coordinates() 541 } else if (!BN_mod_mul(Z_3, Z_2, Z_1, &group->field, ctx)) { in ec_GFp_simple_point_get_affine_coordinates() 547 if (!group->meth->field_mul(group, y, &point->Y, Z_3, ctx)) { in ec_GFp_simple_point_get_affine_coordinates()
|