Enum xmpp_parsers::hashes::Algo
source · pub enum Algo {
Sha_1,
Sha_256,
Sha_512,
Sha3_256,
Sha3_512,
Blake2b_256,
Blake2b_512,
Unknown(String),
}
Expand description
List of the algorithms we support, or Unknown.
Variants§
Sha_1
The Secure Hash Algorithm 1, with known vulnerabilities, do not use it.
Sha_256
The Secure Hash Algorithm 2, in its 256-bit version.
Sha_512
The Secure Hash Algorithm 2, in its 512-bit version.
Sha3_256
The Secure Hash Algorithm 3, based on Keccak, in its 256-bit version.
Sha3_512
The Secure Hash Algorithm 3, based on Keccak, in its 512-bit version.
Blake2b_256
The BLAKE2 hash algorithm, for a 256-bit output.
Blake2b_512
The BLAKE2 hash algorithm, for a 512-bit output.
Unknown(String)
An unknown hash not in this list, you can probably reject it.
Trait Implementations§
source§impl AsXmlText for Algo
impl AsXmlText for Algo
source§impl FromXmlText for Algo
impl FromXmlText for Algo
source§impl IntoAttributeValue for Algo
impl IntoAttributeValue for Algo
source§fn into_attribute_value(self) -> Option<String>
fn into_attribute_value(self) -> Option<String>
Turns this into an attribute string, or None if it shouldn’t be added.
source§impl PartialEq for Algo
impl PartialEq for Algo
impl Eq for Algo
impl StructuralPartialEq for Algo
Auto Trait Implementations§
impl Freeze for Algo
impl RefUnwindSafe for Algo
impl Send for Algo
impl Sync for Algo
impl Unpin for Algo
impl UnwindSafe for Algo
Blanket Implementations§
source§impl<T> AsOptionalXmlText for Twhere
T: AsXmlText,
impl<T> AsOptionalXmlText for Twhere
T: AsXmlText,
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)