chacha

The ChaCha20 stream cipher (docs.ppad.tech/chacha).
git clone git://git.ppad.tech/chacha.git
Log | Files | Refs | README | LICENSE

ppad-chacha.cabal (1393B)


      1 cabal-version:      3.0
      2 name:               ppad-chacha
      3 version:            0.1.0
      4 synopsis:           A pure ChaCha20 stream cipher
      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 ChaCha20 stream cipher and block function.
     15 
     16 source-repository head
     17   type:     git
     18   location: git.ppad.tech/chacha.git
     19 
     20 library
     21   default-language: Haskell2010
     22   hs-source-dirs:   lib
     23   ghc-options:
     24       -Wall
     25   exposed-modules:
     26       Crypto.Cipher.ChaCha20
     27   build-depends:
     28       base >= 4.9 && < 5
     29     , bytestring >= 0.9 && < 0.13
     30     , primitive >= 0.8 && < 0.10
     31 
     32 test-suite chacha-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-chacha
     46     , primitive
     47     , tasty
     48     , tasty-hunit
     49 
     50 benchmark chacha-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-chacha
     65