class SHA3::Digest::SHA3_512

SHA3_512 is a cryptographic hash function that produces a 512-bit (64-byte) hash value.

Usage:

digest = SHA3::Digest::SHA3_512.new
digest.update("message")
hash = digest.hexdigest

# Or more simply:
hash = SHA3::Digest::SHA3_512.hexdigest("message")

See SHA3::Digest for complete API list and additional documentation.