File: cryptonite-conduit.cabal

package info (click to toggle)
haskell-cryptonite-conduit 0.2.2-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 96 kB
  • sloc: haskell: 252; makefile: 3
file content (55 lines) | stat: -rw-r--r-- 1,868 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
Name:                cryptonite-conduit
version:             0.2.2
Synopsis:            cryptonite conduit
Description:
  Conduit bridge for cryptonite
  .
  For now only provide a conduit version for hash and hmac, but
  with contribution, this could provide cipher conduits too,
  and probably other things.
License:             BSD3
License-file:        LICENSE
Copyright:           Vincent Hanquez <vincent@snarc.org>
Author:              Vincent Hanquez <vincent@snarc.org>
Maintainer:          vincent@snarc.org
Category:            Cryptography, Conduit
Stability:           experimental
Build-Type:          Simple
Homepage:            https://github.com/haskell-crypto/cryptonite-conduit
Cabal-Version:       >=1.8
Extra-source-files:  README.md CHANGELOG.md

Library
  Exposed-modules:   Crypto.Cipher.ChaChaPoly1305.Conduit
                     Crypto.MAC.HMAC.Conduit
                     Crypto.Hash.Conduit
                     Crypto.PubKey.ECIES.Conduit
  Build-depends:     base >= 4 && < 5
                   , bytestring
                   , conduit
                   , conduit-extra
                   , cryptonite
                   , exceptions
                   , memory
                   , resourcet
                   , transformers
  ghc-options:       -Wall -fwarn-tabs

test-suite cryptonite-conduit-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base
                     , bytestring
                     , conduit
                     , cryptonite
                     , cryptonite-conduit
                     , memory
                     , tasty
                     , tasty-hunit
                     , tasty-quickcheck
  ghc-options:       -Wall

source-repository head
  type: git
  location: https://github.com/haskell-crypto/cryptonite-conduit