ppad-poly1305.cabal (1418B)
1 cabal-version: 3.0 2 name: ppad-poly1305 3 version: 0.2.0 4 synopsis: A pure Poly1305 MAC 5 license: MIT 6 license-file: LICENSE 7 author: Jared Tobin 8 maintainer: jared@ppad.tech 9 category: Cryptography 10 build-type: Simple 11 tested-with: GHC == 9.8.1 12 extra-doc-files: CHANGELOG 13 description: 14 A pure Poly1305 message authentication code, per 15 [RFC8439](https://datatracker.ietf.org/doc/html/rfc8439). 16 17 source-repository head 18 type: git 19 location: git.ppad.tech/poly1305.git 20 21 library 22 default-language: Haskell2010 23 hs-source-dirs: lib 24 ghc-options: 25 -Wall 26 exposed-modules: 27 Crypto.MAC.Poly1305 28 build-depends: 29 base >= 4.9 && < 5 30 , bytestring >= 0.9 && < 0.13 31 32 test-suite poly1305-tests 33 type: exitcode-stdio-1.0 34 default-language: Haskell2010 35 hs-source-dirs: test 36 main-is: Main.hs 37 38 ghc-options: 39 -rtsopts -Wall -O2 40 41 build-depends: 42 base 43 , bytestring 44 , ppad-base16 45 , ppad-poly1305 46 , primitive 47 , tasty 48 , tasty-hunit 49 50 benchmark poly1305-bench 51 type: exitcode-stdio-1.0 52 default-language: Haskell2010 53 hs-source-dirs: bench 54 main-is: Main.hs 55 56 ghc-options: 57 -rtsopts -O2 -Wall 58 59 build-depends: 60 base 61 , bytestring 62 , criterion 63 , ppad-base16 64 , ppad-poly1305 65