Sha256: fad3c915f76c083784ef3b7ddceb898503710b44cf2e4a78712be8c171547716
Contents?: true
Size: 345 Bytes
Versions: 19
Compression:
Stored size: 345 Bytes
Contents
# frozen_string_literal: true module Noise module Functions module Hash class Sha512 HASHLEN = 64 BLOCKLEN = 128 def hash(data) RbNaCl::Hash.sha512(data) end def hashlen HASHLEN end def blocklen BLOCKLEN end end end end end
Version data entries
19 entries across 19 versions & 1 rubygems