class SHA3::Digest::SHA3_384

SHA3_384 is a cryptographic hash function that produces a 384-bit (48-byte) hash value.

Usage:

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

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

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