Provides an implementation of the SHA-512 hash algorithm.
use dryoc::sha512::Sha512; let mut state = Sha512::new(); state.update(b"bytes"); let hash = state.finalize_to_vec();