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 60 61 62
|
Name: x509-validation
version: 1.6.12
Description: X.509 Certificate and CRL validation. please see README
License: BSD3
License-file: LICENSE
Copyright: Vincent Hanquez <vincent@snarc.org>
Author: Vincent Hanquez <vincent@snarc.org>
Maintainer: Vincent Hanquez <vincent@snarc.org>
Synopsis: X.509 Certificate and CRL validation
Build-Type: Simple
Category: Data
stability: experimental
Homepage: http://github.com/vincenthz/hs-certificate
Cabal-Version: >= 1.10
Library
Default-Language: Haskell2010
Build-Depends: base >= 3 && < 5
, bytestring
, memory
, mtl
, containers
, hourglass
, data-default-class
, pem >= 0.1
, asn1-types >= 0.3 && < 0.4
, asn1-encoding >= 0.9 && < 0.10
, x509 >= 1.7.5
, x509-store >= 1.6
, cryptonite >= 0.24
Exposed-modules: Data.X509.Validation
Other-modules: Data.X509.Validation.Signature
Data.X509.Validation.Fingerprint
Data.X509.Validation.Cache
Data.X509.Validation.Types
ghc-options: -Wall
Test-Suite test-x509-validation
Default-Language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: Tests
Main-is: Tests.hs
Other-modules: Certificate
Build-Depends: base >= 3 && < 5
, bytestring
, memory
, data-default-class
, tasty
, tasty-hunit
, hourglass
, asn1-types
, asn1-encoding
, x509 >= 1.7.1
, x509-store
, x509-validation
, cryptonite
ghc-options: -Wall
source-repository head
type: git
location: git://github.com/vincenthz/hs-certificate
subdir: x509-validation
|