pub trait ConstTimeEq<T: BytewiseEquality + ?Sized = Self> {
    fn ct_eq(&self, other: &T) -> bool;

    fn ct_ne(&self, other: &T) -> bool { ... }
}

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors