diff --git a/src/traits.rs b/src/traits.rs index 5297aa4..9c2acfd 100644 --- a/src/traits.rs +++ b/src/traits.rs @@ -10,6 +10,8 @@ //! Module for common traits. +#![allow(non_snake_case)] + use core::borrow::Borrow; use subtle; @@ -208,7 +210,6 @@ pub trait VartimeMultiscalarMul { /// /// assert_eq!(A1.compress(), (-A2).compress()); /// ``` - #[allow(non_snake_case)] fn vartime_multiscalar_mul(scalars: I, points: J) -> Self::Point where I: IntoIterator,