cryptohash-0.11.9: collection of crypto hashes, fast, pure and practical

LicenseBSD-style
MaintainerVincent Hanquez <vincent@snarc.org>
Stabilityexperimental
Portabilityunknown
Safe HaskellTrustworthy
LanguageHaskell98

Crypto.Hash.SHA512t

Contents

Description

A module containing SHA512/t

Synopsis

Documentation

data Ctx #

SHA512 Context with variable size output

Constructors

Ctx !Int !Ctx 

Incremental hashing Functions

init :: Int -> Ctx #

init a context

update :: Ctx -> ByteString -> Ctx #

update a context with a bytestring

finalize :: Ctx -> ByteString #

finalize the context into a digest bytestring

Single Pass hashing

hash :: Int -> ByteString -> ByteString #

hash a strict bytestring into a digest bytestring

hashlazy :: Int -> ByteString -> ByteString #

hash a lazy bytestring into a digest bytestring