Searched refs:elem_add (Results 1 – 6 of 6) sorted by relevance
/external/rust/crates/ring/crypto/fipsmodule/ec/ |
D | gfp_p384.c | 82 static inline void elem_add(Elem r, const Elem a, const Elem b) { in elem_add() function 172 elem_add(doubled, a, a); in elem_mul_by_3() 173 elem_add(r, doubled, a); in elem_mul_by_3() 182 elem_add(r, a, b); in GFp_p384_elem_add()
|
D | ecp_nistz384.inl | 55 elem_add(M, in_x, Zsqr);
|
/external/rust/crates/ring/src/ec/ |
D | suite_b.rs | 145 ops.elem_add(&mut rhs, a_scaled); in verify_affine_point_is_on_the_curve_scaled() 147 ops.elem_add(&mut rhs, b_scaled); in verify_affine_point_is_on_the_curve_scaled()
|
/external/rust/crates/ring/src/ec/suite_b/ |
D | ops.rs | 78 pub fn elem_add<E: Encoding>(&self, a: &mut Elem<E>, b: &Elem<E>) { in elem_add() method 453 cops.elem_add(&mut x, &cops.n); in q_minus_n_plus_n_equals_0_test() 493 ops.public_key_ops.common.elem_add(&mut actual_sum, &b); in elem_add_test() 497 ops.public_key_ops.common.elem_add(&mut actual_sum, &a); in elem_add_test()
|
/external/rust/crates/ring/src/rsa/ |
D | signing.rs | 580 let m = bigint::elem_add(m_2, q_times_h, n); in sign()
|
/external/rust/crates/ring/src/arithmetic/ |
D | bigint.rs | 551 pub fn elem_add<M, E>(mut a: Elem<M, E>, b: Elem<M, E>, m: &Modulus<M>) -> Elem<M, E> { in elem_add() function 801 let two = elem_add(p.one(), p.one(), p); in for_flt()
|