Skip to content

Commit af0cd0d

Browse files
committed
[allow(dead_code)] for basepoint_double_mul
1 parent e6e217e commit af0cd0d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

secp256kfun/src/backend/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ pub trait TimeSensitive {
4646
fn norm_point_eq_norm_point(lhs: &Point, rhs: &Point) -> bool;
4747
fn norm_point_is_y_even(point: &Point) -> bool;
4848
fn norm_point_conditional_negate(point: &mut Point, cond: bool);
49+
#[allow(dead_code)] // we are not using basepoints acceleration for now
4950
fn basepoint_double_mul(x: &Scalar, A: &BasePoint, y: &Scalar, B: &Point) -> Point;
5051
fn point_double_mul(x: &Scalar, A: &Point, y: &Scalar, B: &Point) -> Point {
5152
let xA = Self::scalar_mul_point(x, A);

0 commit comments

Comments
 (0)