You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
2.1 KiB
63 lines
2.1 KiB
Name: x509-validation
|
|
version: 1.6.10
|
|
x-revision: 1
|
|
Description: X.509 Certificate and CRL validation
|
|
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.2
|
|
, x509-store >= 1.6
|
|
, cryptonite >= 0.8
|
|
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
|
|
, 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
|