Struct bitcoin_hashes::hmac::Hmac
source · #[repr(transparent)]pub struct Hmac<T: Hash>(/* private fields */);
Expand description
A hash computed from a RFC 2104 HMAC. Parameterized by the underlying hash function.
Trait Implementations§
source§impl<'de, T: Hash + Deserialize<'de>> Deserialize<'de> for Hmac<T>
impl<'de, T: Hash + Deserialize<'de>> Deserialize<'de> for Hmac<T>
source§fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Hmac<T>, D::Error>
fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Hmac<T>, D::Error>
Deserialize this value from the given Serde deserializer. Read more
source§impl<T: Hash> Hash for Hmac<T>
impl<T: Hash> Hash for Hmac<T>
§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 to_byte_array(self) -> Self::Bytes
fn to_byte_array(self) -> Self::Bytes
Returns the underlying byte array.
source§fn as_byte_array(&self) -> &Self::Bytes
fn as_byte_array(&self) -> &Self::Bytes
Returns a reference to the underlying byte array.
source§fn from_byte_array(bytes: T::Bytes) -> Self
fn from_byte_array(bytes: T::Bytes) -> Self
Constructs a hash from the underlying byte array.
source§fn hash_byte_chunks<B, I>(byte_slices: I) -> Selfwhere
B: AsRef<[u8]>,
I: IntoIterator<Item = B>,
fn hash_byte_chunks<B, I>(byte_slices: I) -> Selfwhere B: AsRef<[u8]>, I: IntoIterator<Item = B>,
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 + Hash> Ord for Hmac<T>
impl<T: Ord + Hash> Ord for Hmac<T>
source§impl<T: PartialEq + Hash> PartialEq<Hmac<T>> for Hmac<T>
impl<T: PartialEq + Hash> PartialEq<Hmac<T>> for Hmac<T>
source§impl<T: PartialOrd + Hash> PartialOrd<Hmac<T>> for Hmac<T>
impl<T: PartialOrd + Hash> PartialOrd<Hmac<T>> for Hmac<T>
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 moreimpl<T: Copy + Hash> Copy for Hmac<T>
impl<T: Eq + Hash> Eq for Hmac<T>
impl<T: Hash> StructuralEq for Hmac<T>
impl<T: Hash> StructuralPartialEq for Hmac<T>
Auto Trait Implementations§
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