The cryptohash package
A collection of crypto hashes, with a practical incremental and one-pass, pure APIs, with performance close to the fastest implementations available in others languages.
The implementations are made in C with a haskell FFI wrapper that hide the C implementation.
Simple examples using the unified API:
import Crypto.Hash sha1 :: ByteString -> Digest SHA1 sha1 = hash hexSha3_512 :: ByteString -> String hexSha3_512 bs = show (hash bs :: Digest SHA3_512)
Simple examples using the module API:
import qualified Crypto.Hash.SHA1 as SHA1 main = putStrLn $ show $ SHA1.hash (Data.ByteString.pack [1..256])
import qualified Crypto.Hash.SHA3 as SHA3
main = putStrLn $ show $ digest
where digest = SHA3.finalize ctx
ctx = foldl' SHA3.update iCtx (map Data.ByteString.pack [ [1,2,3], [4,5,6] ]
iCtx = SHA3.init 224
Properties
| Versions | 0.4, 0.4.1, 0.5, 0.5.1, 0.5.2, 0.5.3, 0.6, 0.6.1, 0.6.2, 0.6.3, 0.7.0, 0.7.1, 0.7.2, 0.7.3, 0.7.4, 0.7.5, 0.7.6, 0.7.7, 0.7.8, 0.7.9, 0.7.10, 0.8.0, 0.8.1, 0.8.2, 0.8.3, 0.8.4, 0.9.0 |
|---|---|
| Dependencies | base (≥4 & <6), bytestring, ghc-prim |
| License | BSD3 |
| Copyright | Vincent Hanquez <vincent@snarc.org> |
| Author | Vincent Hanquez <vincent@snarc.org> |
| Maintainer | Vincent Hanquez <vincent@snarc.org> |
| Category | Data, Cryptography |
| Home page | http://github.com/vincenthz/hs-cryptohash |
| Source repository | git clone git://github.com/vincenthz/hs-cryptohash |
| Upload date | Sat Dec 15 14:31:45 UTC 2012 |
| Uploaded by | VincentHanquez |
| Built on | ghc-7.6 |
| Distributions | Fedora: 0.7.5, NixOS: 0.9.0, Debian: 0.8.4, FreeBSD: 0.8.3 |
Modules
- Crypto
- Crypto.Hash
- MAC
Downloads
- cryptohash-0.8.2.tar.gz (Cabal source package)
- package description (included in the package)