Searched refs:Z_2 (Results 1 – 1 of 1) sorted by relevance
/external/boringssl/src/crypto/ec/ |
D | simple.c | 508 BIGNUM *Z, *Z_1, *Z_2, *Z_3; in ec_GFp_simple_point_get_affine_coordinates() local 528 Z_2 = BN_CTX_get(ctx); in ec_GFp_simple_point_get_affine_coordinates() 570 if (!group->meth->field_sqr(group, Z_2, Z_1, ctx)) { in ec_GFp_simple_point_get_affine_coordinates() 573 } else if (!BN_mod_sqr(Z_2, Z_1, &group->field, ctx)) { in ec_GFp_simple_point_get_affine_coordinates() 579 if (x != NULL && !group->meth->field_mul(group, x, &point->X, Z_2, ctx)) { in ec_GFp_simple_point_get_affine_coordinates() 586 if (!group->meth->field_mul(group, Z_3, Z_2, Z_1, ctx)) { in ec_GFp_simple_point_get_affine_coordinates() 589 } else if (!BN_mod_mul(Z_3, Z_2, Z_1, &group->field, ctx)) { in ec_GFp_simple_point_get_affine_coordinates()
|