Home
last modified time | relevance | path

Searched refs:HmacAlgorithm (Results 1 – 1 of 1) sorted by relevance

/webrtc/sctp/src/param/
H A Dparam_requested_hmac_algorithm.rs8 pub(crate) enum HmacAlgorithm { enum
16 impl fmt::Display for HmacAlgorithm { implementation
20 HmacAlgorithm::HmacSha128 => "HMAC SHA-128", in fmt()
29 impl From<u16> for HmacAlgorithm { implementation
30 fn from(v: u16) -> HmacAlgorithm { in from() argument
32 0 => HmacAlgorithm::HmacResv1, in from()
33 1 => HmacAlgorithm::HmacSha128, in from()
34 2 => HmacAlgorithm::HmacResv2, in from()
35 3 => HmacAlgorithm::HmacSha256, in from()
36 _ => HmacAlgorithm::Unknown, in from()
[all …]