/// Compare two byte slices in constant time.
///
/// # Examples
///
/// ```rust
/// use codetether_agent::server::auth::constant_time_eq;
///
/// assert!(constant_time_eq(b"hello", b"hello"));
/// assert!(!constant_time_eq(b"hello", b"world"));
/// ```