1Name:                x509-validation
2version:             1.6.11
3Description:         X.509 Certificate and CRL validation. please see README
4License:             BSD3
5License-file:        LICENSE
6Copyright:           Vincent Hanquez <vincent@snarc.org>
7Author:              Vincent Hanquez <vincent@snarc.org>
8Maintainer:          Vincent Hanquez <vincent@snarc.org>
9Synopsis:            X.509 Certificate and CRL validation
10Build-Type:          Simple
11Category:            Data
12stability:           experimental
13Homepage:            http://github.com/vincenthz/hs-certificate
14Cabal-Version:       >= 1.10
15
16Library
17  Default-Language:  Haskell2010
18  Build-Depends:     base >= 3 && < 5
19                   , bytestring
20                   , memory
21                   , mtl
22                   , containers
23                   , hourglass
24                   , data-default-class
25                   , pem >= 0.1
26                   , asn1-types >= 0.3 && < 0.4
27                   , asn1-encoding >= 0.9 && < 0.10
28                   , x509 >= 1.7.5
29                   , x509-store >= 1.6
30                   , cryptonite >= 0.24
31  Exposed-modules:   Data.X509.Validation
32  Other-modules:     Data.X509.Validation.Signature
33                     Data.X509.Validation.Fingerprint
34                     Data.X509.Validation.Cache
35                     Data.X509.Validation.Types
36  ghc-options:       -Wall
37
38Test-Suite test-x509-validation
39  Default-Language:  Haskell2010
40  type:              exitcode-stdio-1.0
41  hs-source-dirs:    Tests
42  Main-is:           Tests.hs
43  Other-modules:     Certificate
44  Build-Depends:     base >= 3 && < 5
45                   , bytestring
46                   , memory
47                   , data-default-class
48                   , tasty
49                   , tasty-hunit
50                   , hourglass
51                   , asn1-types
52                   , asn1-encoding
53                   , x509 >= 1.7.1
54                   , x509-store
55                   , x509-validation
56                   , cryptonite
57  ghc-options:       -Wall
58
59source-repository head
60  type:     git
61  location: git://github.com/vincenthz/hs-certificate
62  subdir:   x509-validation
63