class SHA3::Digest::SHA3_224

SHA3_224 is a cryptographic hash function that produces a 224-bit (28-byte) hash value.

Usage:

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

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

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