packages feed

crypto-rng-0.1.0.2: crypto-rng.cabal

name:                crypto-rng
version:             0.1.0.2
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 == 8.0.2, GHC == 8.2.2, GHC == 8.4.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              >= 0.5.5  && < 0.6,
                       bytestring        >= 0.10.8 && < 0.11,
                       crypto-api        >= 0.13.2 && < 0.14,
                       mtl               >= 2.2.1  && < 2.3,
                       exceptions        >= 0.8.3  && < 0.11,
                       monad-control     >= 1.0.1  && < 1.1,
                       transformers-base >= 0.4.4  && < 0.5
  hs-source-dirs:      src
  default-language:    Haskell2010