mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-07 20:50:39 +00:00
Quench snake case warning
This commit is contained in:
parent
f630041af2
commit
29dca772a9
1 changed files with 2 additions and 1 deletions
|
|
@ -10,6 +10,8 @@
|
||||||
|
|
||||||
//! Module for common traits.
|
//! Module for common traits.
|
||||||
|
|
||||||
|
#![allow(non_snake_case)]
|
||||||
|
|
||||||
use core::borrow::Borrow;
|
use core::borrow::Borrow;
|
||||||
|
|
||||||
use subtle;
|
use subtle;
|
||||||
|
|
@ -208,7 +210,6 @@ pub trait VartimeMultiscalarMul {
|
||||||
///
|
///
|
||||||
/// assert_eq!(A1.compress(), (-A2).compress());
|
/// assert_eq!(A1.compress(), (-A2).compress());
|
||||||
/// ```
|
/// ```
|
||||||
#[allow(non_snake_case)]
|
|
||||||
fn vartime_multiscalar_mul<I, J>(scalars: I, points: J) -> Self::Point
|
fn vartime_multiscalar_mul<I, J>(scalars: I, points: J) -> Self::Point
|
||||||
where
|
where
|
||||||
I: IntoIterator,
|
I: IntoIterator,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue