pub enum Hash {
Show 16 variants
Identity,
SHA1,
SHA2256,
SHA2512,
SHA3512,
SHA3384,
SHA3256,
SHA3224,
Keccak224,
Keccak256,
Keccak384,
Keccak512,
Blake2b512,
Blake2b256,
Blake2s256,
Blake2s128,
}
Expand description
List of types currently supported in the multihash spec.
Not all hash types are supported by this library.
Variants§
Identity
Identity (Raw binary )
SHA1
SHA-1 (20-byte hash size)
SHA2256
SHA-256 (32-byte hash size)
SHA2512
SHA-512 (64-byte hash size)
SHA3512
SHA3-512 (64-byte hash size)
SHA3384
SHA3-384 (48-byte hash size)
SHA3256
SHA3-256 (32-byte hash size)
SHA3224
SHA3-224 (28-byte hash size)
Keccak224
Keccak-224 (28-byte hash size)
Keccak256
Keccak-256 (32-byte hash size)
Keccak384
Keccak-384 (48-byte hash size)
Keccak512
Keccak-512 (64-byte hash size)
Blake2b512
BLAKE2b-512 (64-byte hash size)
Blake2b256
BLAKE2b-256 (32-byte hash size)
Blake2s256
BLAKE2s-256 (32-byte hash size)
Blake2s128
BLAKE2s-128 (16-byte hash size)
Implementations§
Trait Implementations§
impl Copy for Hash
impl Eq for Hash
impl StructuralPartialEq for Hash
Auto Trait Implementations§
impl Freeze for Hash
impl RefUnwindSafe for Hash
impl Send for Hash
impl Sync for Hash
impl Unpin for Hash
impl UnwindSafe for Hash
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