-
Notifications
You must be signed in to change notification settings - Fork 0
/
pbkdf.cabal
59 lines (50 loc) · 2.02 KB
/
pbkdf.cabal
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
56
57
58
59
Name: pbkdf
Version: 1.1.1.1
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: [email protected]
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.1
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