name: DRBG version: 0.1.3 license: BSD3 license-file: LICENSE author: Thomas DuBuisson maintainer: Thomas DuBuisson description: A deterministic random bit generator implementing Hash and HMAC based DRBGs from NIST SP 800-90. synopsis: A deterministic random bit generator (aka RNG, PRNG) implementing DRBGs from NIST SP 800-90 category: Cryptography stability: stable build-type: Simple cabal-version: >= 1.6 tested-with: GHC == 6.10.1 Data-Files: Test/HMAC_DRBG.txt Test/Hash_DRBG.txt Test/CTR_DRBG.txt Test/Dual_EC_DRBG.txt CHANGELOG extra-source-files: Test/HMAC_DRBG.txt Test/Hash_DRBG.txt Test/CTR_DRBG.txt Test/Dual_EC_DRBG.txt flag test description: Build a program to test the DRBG library default: False Library Build-Depends: base >= 4.0 && < 4.4, cereal >= 0.2 && <= 0.4, bytestring, prettyclass, tagged >= 0.2 && < 0.3, crypto-api >= 0.2, cryptohash >= 0.6.1, parallel, mtl == 2.* ghc-options: -O2 hs-source-dirs: exposed-modules: Crypto.Random.DRBG.Hash, Crypto.Random.DRBG.HMAC, Crypto.Random.DRBG, Crypto.Random.DRBG.Types other-modules: Crypto.Random.DRBG.HashDF, Crypto.Random.DRBG.Util Executable drbg_test if !flag(test) buildable: False main-is: Test/KAT.hs if flag(test) build-depends: base, QuickCheck, crypto-api, bytestring, binary, cereal, cryptohash other-modules: Paths_DRBG