/// Constant-time equality for String types #[inline] pub fn ct_eq(lhs: impl AsRef, rhs: impl AsRef) -> bool { constant_time_eq::constant_time_eq(lhs.as_ref().as_bytes(), rhs.as_ref().as_bytes()) }