packages feed

crypto-simple-0.1.0.0: crypto-simple.cabal

name:                crypto-simple
version:             0.1.0.0
synopsis:            A simple high level encryption interface based on cryptonite
description:         Please see README.md
homepage:            https://github.com/Risto-Stevcev/haskell-crypto-simple#readme
license:             MIT
license-file:        LICENSE
author:              Risto Stevcev
maintainer:          example@example.com
copyright:           2016 Risto Stevcev
Stability:           experimental
category:            Cryptography
build-type:          Simple
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Crypto.Simple.Cipher
                     , Crypto.Simple.CBC
                     , Crypto.Simple.CTR
  build-depends:       base >= 4.7 && < 5
                     , bytestring >= 0.10 && < 1
                     , cryptonite >= 0.19 && < 1
  default-language:    Haskell2010

test-suite crypto-simple-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base
                     , crypto-simple
                     , bytestring >= 0.10 && < 1
                     , cryptonite >= 0.19 && < 1
                     , hspec
                     , QuickCheck
  other-modules:       Crypto.SimpleSpec
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/Risto-Stevcev/haskell-crypto-simple