blake2-0.3.0.1: A library providing BLAKE2
MaintainerJohn Galt <jgalt@centromere.net>
Stabilityexperimental
PortabilityPOSIX
Safe HaskellSafe-Inferred
LanguageHaskell2010

Crypto.Hash.BLAKE2.BLAKE2s

Description

 
Synopsis

Types

type BLAKE2sState = ForeignPtr BLAKE2sStruct Source #

The hash state.

Functions

initialize Source #

Arguments

:: Int

Output length in bytes

-> BLAKE2sState 

Create a new hashing state.

initialize' Source #

Arguments

:: Int

Output length in bytes

-> ByteString

Key

-> BLAKE2sState 

Create a new keyed hashing state.

update Source #

Arguments

:: ByteString

Data to hash

-> BLAKE2sState

Hashing state

-> BLAKE2sState 

Add data to the hashing state.

finalize Source #

Arguments

:: Int

Output length in bytes

-> BLAKE2sState

Hashing state

-> ByteString 

Finalize the hashing state.

hash Source #

Arguments

:: Int

Output length in bytes

-> ByteString

Key

-> ByteString

Data to hash

-> ByteString 

Perform hashing all in one step. A common way of calling this function is hash 32 mempty dataToHash for applications which do not require keying.