pub enum ReplPasswordV1 {
PBKDF2 {
cost: usize,
salt: Base64UrlSafeData,
hash: Base64UrlSafeData,
},
PBKDF2_SHA1 {
cost: usize,
salt: Base64UrlSafeData,
hash: Base64UrlSafeData,
},
PBKDF2_SHA512 {
cost: usize,
salt: Base64UrlSafeData,
hash: Base64UrlSafeData,
},
SSHA512 {
salt: Base64UrlSafeData,
hash: Base64UrlSafeData,
},
NT_MD4 {
hash: Base64UrlSafeData,
},
}
Variants§
Trait Implementations§
source§impl Debug for ReplPasswordV1
impl Debug for ReplPasswordV1
source§impl<'de> Deserialize<'de> for ReplPasswordV1
impl<'de> Deserialize<'de> for ReplPasswordV1
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<ReplPasswordV1> for ReplPasswordV1
impl PartialEq<ReplPasswordV1> for ReplPasswordV1
source§fn eq(&self, other: &ReplPasswordV1) -> bool
fn eq(&self, other: &ReplPasswordV1) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.