class SHA3::Digest

A sub-class of (MRI Ruby based) Digest::Class, it implements SHA3 (Keccak) digest algorithm.

@note SHA3::Digest class provides a four sub-classes for the available hash bit lengths (types).

You can instantiate a new instance of Digest sub-class for a given type using the following sub-classes:

  SHA3::Digest::SHA224([data])
  SHA3::Digest::SHA256([data])
  SHA3::Digest::SHA384([data])
  SHA3::Digest::SHA512([data])

The [data] parameter is optional.