Searched refs:BN_to_felem (Results 1 – 2 of 2) sorted by relevance
/external/boringssl/src/crypto/ec/ |
D | p224-64.c | 230 static int BN_to_felem(felem out, const BIGNUM *bn) { in BN_to_felem() function 1080 if (!BN_to_felem(x_in, &point->X) || in ec_GFp_nistp224_point_get_affine_coordinates() 1081 !BN_to_felem(y_in, &point->Y) || in ec_GFp_nistp224_point_get_affine_coordinates() 1082 !BN_to_felem(z1, &point->Z)) { in ec_GFp_nistp224_point_get_affine_coordinates() 1216 if (!BN_to_felem(x_out, &p->X) || in ec_GFp_nistp224_points_mul() 1217 !BN_to_felem(y_out, &p->Y) || in ec_GFp_nistp224_points_mul() 1218 !BN_to_felem(z_out, &p->Z)) { in ec_GFp_nistp224_points_mul()
|
D | p256-64.c | 126 static int BN_to_felem(felem out, const BIGNUM *bn) { in BN_to_felem() function 1660 if (!BN_to_felem(x_in, &point->X) || in ec_GFp_nistp256_point_get_affine_coordinates() 1661 !BN_to_felem(y_in, &point->Y) || in ec_GFp_nistp256_point_get_affine_coordinates() 1662 !BN_to_felem(z1, &point->Z)) { in ec_GFp_nistp256_point_get_affine_coordinates() 1793 if (!BN_to_felem(x_out, &p->X) || in ec_GFp_nistp256_points_mul() 1794 !BN_to_felem(y_out, &p->Y) || in ec_GFp_nistp256_points_mul() 1795 !BN_to_felem(z_out, &p->Z)) { in ec_GFp_nistp256_points_mul()
|