pub struct Hmac<T>(/* private fields */)
where
T: Hash;
Available on crate feature
hashes
only.Expand description
A hash computed from a RFC 2104 HMAC. Parameterized by the underlying hash function.
Trait Implementations§
source§impl<'de, T> Deserialize<'de> for Hmac<T>where
T: Hash + Deserialize<'de>,
Available on crate feature serde
only.
impl<'de, T> Deserialize<'de> for Hmac<T>where
T: Hash + Deserialize<'de>,
Available on crate feature
serde
only.source§fn deserialize<D>(d: D) -> Result<Hmac<T>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(d: D) -> Result<Hmac<T>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<T> Hash for Hmac<T>where
T: Hash,
impl<T> Hash for Hmac<T>where
T: Hash,
§type Engine = HmacEngine<T>
type Engine = HmacEngine<T>
A hashing engine which bytes can be serialized into. It is expected
to implement the
io::Write
trait, and to never return errors under
any conditions.source§fn from_engine(e: HmacEngine<T>) -> Hmac<T>
fn from_engine(e: HmacEngine<T>) -> Hmac<T>
Produces a hash from the current state of a given engine.
source§fn from_slice(sl: &[u8]) -> Result<Hmac<T>, FromSliceError>
fn from_slice(sl: &[u8]) -> Result<Hmac<T>, FromSliceError>
Copies a byte slice into a hash object.
source§fn as_byte_array(&self) -> &<Hmac<T> as Hash>::Bytes
fn as_byte_array(&self) -> &<Hmac<T> as Hash>::Bytes
Returns a reference to the underlying byte array.
source§fn from_byte_array(bytes: <T as Hash>::Bytes) -> Hmac<T>
fn from_byte_array(bytes: <T as Hash>::Bytes) -> Hmac<T>
Constructs a hash from the underlying byte array.
source§fn hash_byte_chunks<B, I>(byte_slices: I) -> Self
fn hash_byte_chunks<B, I>(byte_slices: I) -> Self
Hashes all the byte slices retrieved from the iterator together.
source§const DISPLAY_BACKWARD: bool = false
const DISPLAY_BACKWARD: bool = false
Flag indicating whether user-visible serializations of this hash
should be backward. For some reason Satoshi decided this should be
true for
Sha256dHash
, so here we are.source§impl<T> Ord for Hmac<T>
impl<T> Ord for Hmac<T>
source§impl<T> PartialEq for Hmac<T>
impl<T> PartialEq for Hmac<T>
source§impl<T> PartialOrd for Hmac<T>where
T: PartialOrd + Hash,
impl<T> PartialOrd for Hmac<T>where
T: PartialOrd + Hash,
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl<T> Serialize for Hmac<T>
Available on crate feature serde
only.
impl<T> Serialize for Hmac<T>
Available on crate feature
serde
only.source§fn serialize<S>(
&self,
s: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
s: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl<T> Copy for Hmac<T>
impl<T> Eq for Hmac<T>
impl<T> StructuralPartialEq for Hmac<T>where
T: Hash,
Auto Trait Implementations§
impl<T> Freeze for Hmac<T>where
T: Freeze,
impl<T> RefUnwindSafe for Hmac<T>where
T: RefUnwindSafe,
impl<T> Send for Hmac<T>where
T: Send,
impl<T> Sync for Hmac<T>where
T: Sync,
impl<T> Unpin for Hmac<T>where
T: Unpin,
impl<T> UnwindSafe for Hmac<T>where
T: UnwindSafe,
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
source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)