Module dryoc::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

  • SHA-512 wrapper, provided for convience.

Type Aliases

  • Type alias for SHA512 digest, provided for convience.