packages feed

DRBG-0.5.4: DRBG.cabal

name:           DRBG
version:        0.5.4
license:        BSD3
license-file:   LICENSE
author:         Thomas DuBuisson <thomas.dubuisson@gmail.com>
maintainer:     Thomas DuBuisson
description:    Cryptographically secure RNGs
synopsis:       Deterministic random bit generator (aka RNG, PRNG) based 
                HMACs, Hashes, and Ciphers. 
category:       Cryptography
stability:      stable
build-type:     Simple
cabal-version:  >= 1.8
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 && < 5, cereal >= 0.2,
                 bytestring, prettyclass, tagged >= 0.7,
                 crypto-api >= 0.13, cryptohash-cryptoapi >= 0.1,
                 parallel, mtl >= 2.0, cipher-aes128 >= 0.6, entropy
  ghc-options: -O2
  hs-source-dirs:
  exposed-modules: Crypto.Random.DRBG.Hash,
                   Crypto.Random.DRBG.HMAC,
                   Crypto.Random.DRBG.CTR,
                   Crypto.Random.DRBG,
                   Crypto.Random.DRBG.Types
  other-modules: Crypto.Random.DRBG.HashDF

Test-Suite test-drbg
  ghc-options: -Wall
  Type:                 exitcode-stdio-1.0
  main-is: Test/KAT.hs
  build-depends:     base
                   , QuickCheck
                   , crypto-api
                   , bytestring
                   , binary
                   , cereal
                   , cryptohash-cryptoapi
                   , crypto-api-tests
                   , HUnit
                   , test-framework
                   , test-framework-hunit
                   , cipher-aes128
                   , entropy
                   , mtl
                   , parallel
                   , prettyclass
                   , tagged
  other-modules: Paths_DRBG

source-repository head
  type:         git
  location:     https://github.com/TomMD/DRBG