packages feed

crypto-rng-0.1.0.0: crypto-rng.cabal

name:                crypto-rng
version:             0.1.0.0
synopsis:            Cryptographic random number generator.

description:         Convenient wrapper for the cryptographic random generator
                     provided by the DRBG package.

homepage:            https://github.com/scrive/crypto-rng
license:             BSD3
license-file:        LICENSE
author:              Scrive AB
maintainer:          Mikhail Glushenkov <mikhail.glushenkov@scrive.com>,
                     Jonathan Jouty <jonathan@scrive.com>
copyright:           Scrive AB
category:            Crypto
build-type:          Simple
tested-with:         GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.1
extra-source-files:  ChangeLog.md
cabal-version:       >=1.10

source-repository head
  type:     git
  location: https://github.com/scrive/crypto-rng.git

library
  exposed-modules:     Crypto.RNG
                       Crypto.RNG.Class
                       Crypto.RNG.Utils
  build-depends:       base < 5,
                       DRBG,
                       bytestring,
                       exceptions,
                       crypto-api,
                       monad-control,
                       mtl,
                       transformers-base
  hs-source-dirs:      src
  default-language:    Haskell2010