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

Portabilityunknown
Stabilityexperimental
MaintainerVincent Hanquez <vincent@snarc.org>

Crypto.Hash.SHA256

Contents

Description

A module containing SHA256 bindings

Synopsis

Documentation

data Ctx

Constructors

Ctx !ByteString 

Instances

Storable Ctx 

data SHA256

Instances

Eq SHA256 
Ord SHA256 
Show SHA256 

Incremental hashing Functions

init :: 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 :: ByteString -> ByteString

hash a strict bytestring into a digest bytestring

hashlazy :: ByteString -> ByteString

hash a lazy bytestring into a digest bytestring