|
|
|
| Description |
| An interface to message digest algorithms.
|
|
| Synopsis |
|
|
|
| Documentation |
|
|
| Digest is an opaque object that represents an algorithm of
message digest.
|
|
|
|
| getDigestByName name returns a message digest algorithm whose
name is name. If no algorithms are found, the result is
Nothing.
|
|
|
| getDigestNames returns a list of name of message digest
algorithms.
|
|
|
| digest digests a stream of data. The string must
not contain any letters which aren't in the range of U+0000 -
U+00FF.
|
|
|
| digestBS digests a chunk of data.
|
|
|
| digestLBS digests a stream of data.
|
|
|
| :: Digest | the hash function to use in the HMAC calculation
| | -> ByteString | the HMAC key
| | -> ByteString | the data to be signed
| | -> ByteString | resulting HMAC
| | Perform a private key signing using the HMAC template with a given hash
|
|
|
| Produced by Haddock version 2.4.2 |