跳到主要内容

HkdfUsingHmac

结构体 HkdfUsingHmac 

Source
pub struct HkdfUsingHmac<'a>(pub &'a dyn Hmac);
展开描述

Implementation of Hkdf (并 thence HkdfExpander) via hmac::Hmac

Tuple Fields§

§0: &'a dyn Hmac

Trait 实现§

Source§

impl Hkdf for HkdfUsingHmac<'_>

Source§

fn extract_from_zero_ikm(&self, salt: Option<&[u8]>) -> Box<dyn HkdfExpander>

HKDF-Extract(salt, 0_HashLen) 更多信息
Source§

fn extract_from_secret( &self, salt: Option<&[u8]>, secret: &[u8], ) -> Box<dyn HkdfExpander>

HKDF-Extract(salt, secret) 更多信息
Source§

fn expander_for_okm(&self, okm: &OkmBlock) -> Box<dyn HkdfExpander>

构建 HkdfExpander using okm as 密钥 PRK.
Source§

fn hmac_sign(&self, key: &OkmBlock, message: &[u8]) -> Tag

Signs message using key viewed as 一个 HMAC key. 更多信息
Source§

fn extract_from_kx_shared_secret( &self, salt: Option<&[u8]>, kx: Box<dyn ActiveKeyExchange>, peer_pub_key: &[u8], ) -> Result<Box<dyn HkdfExpander>, Error>

HKDF-Extract(salt, shared_secret) where shared_secret is 结果 of 一个 key exchange. 更多信息
Source§

fn fips(&self) -> bool

Return true if this is 由 FIPS 批准的实现支持.

自动 Trait 实现§

§

impl<'a> Freeze for HkdfUsingHmac<'a>

§

impl<'a> !RefUnwindSafe for HkdfUsingHmac<'a>

§

impl<'a> Send for HkdfUsingHmac<'a>

§

impl<'a> Sync for HkdfUsingHmac<'a>

§

impl<'a> Unpin for HkdfUsingHmac<'a>

§

impl<'a> UnsafeUnpin for HkdfUsingHmac<'a>

§

impl<'a> !UnwindSafe for HkdfUsingHmac<'a>

Blanket 实现§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. 更多信息
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows 从 an owned value. 更多信息
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows 从 an owned value. 更多信息
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

原样返回传入的参数。

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::从(self)

That is, this conversion is whatever the implementation of From<T> 用于 U 的实现方式。

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

转换出错时返回的类型。
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

执行转换。
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

转换出错时返回的类型。
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

执行转换。