md5-0.1.0.3: MD5 Hash
Safe HaskellSafe-Inferred
LanguageHaskell2010

Hash.Md5

Synopsis

Documentation

newtype Context s Source #

Constructors

Context (MutableByteArray s) 

Context Reuse

context :: ST s (Context s) Source #

Create a new context. The context is initialized.

reinitialize :: Context s -> ST s () Source #

Reset the context so that it may be used to hash another byte sequence.

update :: Context s -> Bytes -> ST s () Source #

finalize Source #

Arguments

:: Context s 
-> MutableByteArray s

Destination, implied length is 16

-> Int

Destination offset

-> ST s () 

One Shot