File tree Expand file tree Collapse file tree 2 files changed +149
-99
lines changed
curve25519-dalek/src/backend/vector/neon Expand file tree Collapse file tree 2 files changed +149
-99
lines changed Original file line number Diff line number Diff line change @@ -320,6 +320,7 @@ impl<'a> From<&'a edwards::EdwardsPoint> for NafLookupTable8<CachedPoint> {
320
320
mod test {
321
321
use super :: * ;
322
322
323
+ #[ rustfmt:: skip] // Skip S8..S11 formatting
323
324
fn serial_add ( P : edwards:: EdwardsPoint , Q : edwards:: EdwardsPoint ) -> edwards:: EdwardsPoint {
324
325
use crate :: backend:: serial:: u64:: field:: FieldElement51 ;
325
326
@@ -516,10 +517,11 @@ mod test {
516
517
517
518
#[ test]
518
519
fn basepoint_odd_lookup_table_verify ( ) {
519
- use crate :: constants;
520
520
use crate :: backend:: vector:: neon:: constants:: BASEPOINT_ODD_LOOKUP_TABLE ;
521
+ use crate :: constants;
521
522
522
- let basepoint_odd_table = NafLookupTable8 :: < CachedPoint > :: from ( & constants:: ED25519_BASEPOINT_POINT ) ;
523
+ let basepoint_odd_table =
524
+ NafLookupTable8 :: < CachedPoint > :: from ( & constants:: ED25519_BASEPOINT_POINT ) ;
523
525
println ! ( "Testing basepoint table" ) ;
524
526
525
527
let table_B = & BASEPOINT_ODD_LOOKUP_TABLE ;
You can’t perform that action at this time.
0 commit comments