Skip to main content

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.

Type Aliases§

Digest
Type alias for a SHA-512 digest.