 | HsOpenSSL-0.1.1: (Part of) OpenSSL binding for Haskell | Contents | Index |
|
|
|
|
|
| Description |
| An interface to message digest algorithms.
|
|
| Synopsis |
|
|
|
| Documentation |
|
| data Digest |
| Digest is an opaque object that represents an algorithm of
message digest.
|
|
|
| getDigestByName :: String -> IO (Maybe Digest) |
| getDigestByName name returns a message digest algorithm whose
name is name. If no algorithms are found, the result is
Nothing.
|
|
| getDigestNames :: IO [String] |
| getDigestNames returns a list of name of message digest
algorithms.
|
|
| digest :: Digest -> String -> String |
| 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 :: Digest -> ByteString -> String |
| digestBS digests a chunk of data.
|
|
| digestLBS :: Digest -> LazyByteString -> String |
| digestLBS digests a stream of data.
|
|
| Produced by Haddock version 0.8 |