Searched refs:y1 (Results 1 – 3 of 3) sorted by relevance
/crypto/ |
D | ecc.c | 1076 static void ecc_point_double_jacobian(u64 *x1, u64 *y1, u64 *z1, in ecc_point_double_jacobian() argument 1089 vli_mod_square_fast(t4, y1, curve); in ecc_point_double_jacobian() 1095 vli_mod_mult_fast(y1, y1, z1, curve); in ecc_point_double_jacobian() 1136 vli_set(z1, y1, ndigits); in ecc_point_double_jacobian() 1137 vli_set(y1, t4, ndigits); in ecc_point_double_jacobian() 1141 static void apply_z(u64 *x1, u64 *y1, u64 *z, const struct ecc_curve *curve) in apply_z() argument 1148 vli_mod_mult_fast(y1, y1, t1, curve); /* y1 * z^3 */ in apply_z() 1152 static void xycz_initial_double(u64 *x1, u64 *y1, u64 *x2, u64 *y2, in xycz_initial_double() argument 1159 vli_set(y2, y1, ndigits); in xycz_initial_double() 1167 apply_z(x1, y1, z, curve); in xycz_initial_double() [all …]
|
D | sm2.c | 301 MPI x1 = NULL, y1 = NULL; in _sm2_verify() local 306 y1 = mpi_new(0); in _sm2_verify() 325 if (mpi_ec_get_affine(x1, y1, &sG, ec)) in _sm2_verify() 342 mpi_free(y1); in _sm2_verify()
|
D | ecdsa.c | 102 u64 y1[ECC_MAX_DIGITS]; in _ecdsa_verify() local 103 struct ecc_point res = ECC_POINT_INIT(x1, y1, ndigits); in _ecdsa_verify()
|