Name:                pbkdf
Version:             1.1.1.0
Synopsis:            Haskell implementation of the PBKDF functions from RFC-2898.
Description:         The Password Based Key Derivation Functions described in RFC-2898 with a test suite to verify that it works with the test vectors published in RFC6070.
Homepage:            https://github.com/cdornan/pbkdf
Bug-reports:         https://github.com/cdornan/pbkdf/issues
License:             BSD3
License-file:        LICENSE
Author:              Chris Dornan
Maintainer:          chris.dornan@irisconnect.com
Copyright:           (C) Chris Dornan
Category:            Cryptography
Build-type:          Simple
Cabal-version:       >=1.14

Source-repository this
    type:           git
    location:       https://github.com/cdornan/pbkdf.git
    tag:            1.1.1.0

Source-repository head
    type:           git
    location:       https://github.com/cdornan/pbkdf.git

Library
    Exposed-modules:
        Crypto.PBKDF
        Crypto.PBKDF.ByteString
        Crypto.PBKDF.Core

    Build-depends:
        base                >= 4.5   && < 5.0       ,
        binary              >= 0.5                  ,
        byteable            >= 0.1                  ,
        bytedump            >= 1.0                  ,
        bytestring          >= 0.9                  ,
        cryptohash          >= 0.10                 ,
        utf8-string         >= 0.3.7
        
    GHC-Options: -Wall

    Default-Language: Haskell2010

Test-Suite rfc-6070
    type:          exitcode-stdio-1.0
    main-is:       rfc6070.hs
    Build-depends:
        base                >= 4.5                  ,
        binary              >= 0.5                  ,
        byteable            >= 0.1                  ,
        bytedump            >= 1.0                  ,
        bytestring          >= 0.9                  ,
        cryptohash          >= 0.10                 ,
        pbkdf                                       ,
        utf8-string         >= 0.3.7

    GHC-Options: -Wall

    Default-Language: Haskell2010