class Crypto::Digest::Blake2b

Defined in:

monocypher/hashes.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new #

[View source]

Instance Method Detail

def digest_size : Int32 #

Returns the digest output size in bytes.


[View source]
def final_impl(dst : Bytes) : Nil #

Stores the output digest of #digest_size bytes in dst.


[View source]
def reset_impl : Nil #

Resets the object to it's initial state.


[View source]
def update_impl(data : Bytes) : Nil #

Hashes data incrementally.


[View source]