Class: Noise::Functions::Hash::Blake3HMAC

Inherits:
HMAC::Base
  • Object
show all
Defined in:
lib/noise/functions/hash/blake3.rb

Instance Method Summary collapse

Constructor Details

#initialize(key = nil) ⇒ Blake3HMAC

Returns a new instance of Blake3HMAC.



30
31
32
# File 'lib/noise/functions/hash/blake3.rb', line 30

def initialize(key = nil)
  super(::Blake3::Hasher, Blake3::BLOCKLEN, Blake3::HASHLEN, key)
end