class SHA3::Digest::SHA3_256

SHA3_256 is a cryptographic hash function that produces a 256-bit (32-byte) hash value.

Usage:

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

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

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