removed unused variable

This commit is contained in:
mamoniot 2023-02-25 20:39:25 -05:00
commit 8bdb58ef15
No known key found for this signature in database
GPG key ID: ADCCDBBE0E3D3B3B

View file

@ -11,8 +11,6 @@ pub mod salsa;
pub mod typestate;
pub mod x25519;
pub const ZEROES: [u8; 64] = [0_u8; 64];
/// Constant time byte slice equality.
#[inline]
pub fn secure_eq<A: AsRef<[u8]> + ?Sized, B: AsRef<[u8]> + ?Sized>(a: &A, b: &B) -> bool {