We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6e217e commit af0cd0dCopy full SHA for af0cd0d
secp256kfun/src/backend/mod.rs
@@ -46,6 +46,7 @@ pub trait TimeSensitive {
46
fn norm_point_eq_norm_point(lhs: &Point, rhs: &Point) -> bool;
47
fn norm_point_is_y_even(point: &Point) -> bool;
48
fn norm_point_conditional_negate(point: &mut Point, cond: bool);
49
+ #[allow(dead_code)] // we are not using basepoints acceleration for now
50
fn basepoint_double_mul(x: &Scalar, A: &BasePoint, y: &Scalar, B: &Point) -> Point;
51
fn point_double_mul(x: &Scalar, A: &Point, y: &Scalar, B: &Point) -> Point {
52
let xA = Self::scalar_mul_point(x, A);
0 commit comments