Searched refs:point_mul (Results 1 – 6 of 6) sorted by relevance
/external/cronet/third_party/boringssl/src/crypto/curve25519/ |
D | make_curve25519_tables.py | 69 def point_mul(s, P): function 126 P = point_mul(s, (g_x, g_y)) 134 P = point_mul((j + 1) << (i * 8), (g_x, g_y)) 139 P = point_mul(2*i + 1, (g_x, g_y))
|
/external/boringssl/src/crypto/curve25519/ |
D | make_curve25519_tables.py | 69 def point_mul(s, P): function 126 P = point_mul(s, (g_x, g_y)) 134 P = point_mul((j + 1) << (i * 8), (g_x, g_y)) 139 P = point_mul(2*i + 1, (g_x, g_y))
|
/external/rust/crates/ring/src/ec/suite_b/ |
D | ecdh.rs | 124 let product = private_key_ops.point_mul(&my_private_key, &peer_public_key); in ecdh()
|
D | ops.rs | 189 pub fn point_mul(&self, p_scalar: &Scalar, (p_x, p_y): &(Elem<R>, Elem<R>)) -> Point { in point_mul() method 916 let actual_result = ops.point_mul(&p_scalar, &(x, y)); in point_mul_tests() 951 let product = priv_ops.point_mul(&p_scalar, &p); in point_mul_serialized_test()
|
/external/rust/crates/ring/src/ec/suite_b/ecdsa/ |
D | verification.rs | 204 let scaled_p = ops.point_mul(p_scalar, p_xy); in twin_mul()
|
/external/rust/crates/ring/src/ec/suite_b/ops/ |
D | p384.rs | 153 PRIVATE_KEY_OPS.point_mul(a, &GENERATOR) in p384_point_mul_base_impl()
|