pub struct LookupKey(/* private fields */);Expand description
A keyed lookup value: the lowercase-hex HMAC of a domain-separated message.
Contains no plaintext and is safe to persist, but is still sensitive (it is
the database lookup index). Compare lookup keys with
LookupKey::ct_eq, not ==, when the comparison could be timing-attacked.
Implementations§
Trait Implementations§
impl Eq for LookupKey
impl StructuralPartialEq for LookupKey
Auto Trait Implementations§
impl Freeze for LookupKey
impl RefUnwindSafe for LookupKey
impl Send for LookupKey
impl Sync for LookupKey
impl Unpin for LookupKey
impl UnsafeUnpin for LookupKey
impl UnwindSafe for LookupKey
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more