diff --git a/src/lib.rs b/src/lib.rs index 795eade..6e95753 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -279,7 +279,6 @@ pub trait ConstantTimeEq { /// /// * `Choice(1u8)` if `self == other`; /// * `Choice(0u8)` if `self != other`. - #[inline] fn ct_eq(&self, other: &Self) -> Choice; /// Determine if two items are NOT equal. @@ -422,7 +421,6 @@ pub trait ConditionallySelectable: Copy { /// assert_eq!(z, y); /// # } /// ``` - #[inline] fn conditional_select(a: &Self, b: &Self, choice: Choice) -> Self; /// Conditionally assign `other` to `self`, according to `choice`. @@ -609,7 +607,6 @@ pub trait ConditionallyNegatable { /// unchanged. /// /// This function should execute in constant time. - #[inline] fn conditional_negate(&mut self, choice: Choice); }