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

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

Crypto.Hash.SHA256

Contents

Description

A module containing SHA256 bindings

Synopsis

Documentation

newtype Ctx Source

SHA256 Context

Constructors

Ctx (Context SHA256) 

Incremental hashing Functions

init :: Ctx Source

init a context

update :: Ctx -> ByteString -> Ctx Source

update a context with a bytestring

updates :: Ctx -> [ByteString] -> Ctx Source

updates a context with multiples bytestring

finalize :: Ctx -> ByteString Source

finalize the context into a digest bytestring

Single Pass hashing

hash :: ByteString -> ByteString Source

hash a strict bytestring into a digest bytestring

hashlazy :: ByteString -> ByteString Source

hash a lazy bytestring into a digest bytestring