Module sha512

Module sha512 

Source
Expand description

§SHA-512 hash algorithm

Provides an implementation of the SHA-512 hash algorithm.

§Example

use dryoc::sha512::Sha512;

let mut state = Sha512::new();
state.update(b"bytes");
let hash = state.finalize_to_vec();

Structs§

Sha512
SHA-512 wrapper, provided for convience.

Type Aliases§

Digest
Type alias for SHA512 digest, provided for convience.