pub struct HmacMidState<T: Hash> {
pub inner: <T::Engine as HashEngine>::MidState,
pub outer: <T::Engine as HashEngine>::MidState,
}Expand description
Pair of underlying hash midstates which represent the current state of an HmacEngine.
Fields§
§inner: <T::Engine as HashEngine>::MidStateMidstate of the inner hash engine
outer: <T::Engine as HashEngine>::MidStateMidstate of the outer hash engine
Auto Trait Implementations§
impl<T> Freeze for HmacMidState<T>
impl<T> RefUnwindSafe for HmacMidState<T>
impl<T> Send for HmacMidState<T>
impl<T> Sync for HmacMidState<T>
impl<T> Unpin for HmacMidState<T>
impl<T> UnwindSafe for HmacMidState<T>
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