-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpkcs7.cabal
76 lines (73 loc) · 3.01 KB
/
pkcs7.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
name: pkcs7
version: 0.1.0
synopsis: PKCS #7 / CMS data structures and functions
description:
This library provides data structures and functions to represent,
read, and write objects defined by PKCS #7 (RFC2315) and
Cryptographic Message Syntax (RFC2630).
license: BSD3
license-file: LICENSE
author: Enno Cramer
maintainer: Enno Cramer <cramer@hornetsecurity.com>
copyright: Copyright (c) 2015-2016 Hornetsecurity GmbH
category: Data
stability: Experimental
build-type: Simple
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Data.Pkcs7.Oids
, Data.Pkcs7.Types
, Data.Pkcs7.DigestedData
, Data.Pkcs7.SignedData
, Data.Pkcs7.EncryptedData
, Data.Pkcs7.EnvelopedData
, Data.Pkcs7.AuthenticatedData
other-modules: Data.Pkcs7.ASN1
, Data.Pkcs7.Parse
, Data.Pkcs7.Print
build-depends: base >= 4.7 && < 5
, memory >= 0.7 && < 0.12
, bytestring >= 0.10.6 && < 0.11
, hourglass >= 0.2.9 && < 0.3
, asn1-types >= 0.3.1 && < 0.4
, asn1-parse >= 0.9.4 && < 0.10
, asn1-encoding >= 0.9.3 && < 0.10
, x509 >= 1.6.3 && < 1.7
default-language: Haskell2010
ghc-options: -Wall
test-suite test-pkcs7
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
other-modules: Tests.Internal
, Tests.X509
, Tests.Types
, Tests.DigestedData
, Tests.SignedData
, Tests.EncryptedData
, Tests.EnvelopedData
, Tests.AuthenticatedData
build-depends: base >= 4.7 && < 5
, bytestring >= 0.10.6 && < 0.11
, base64-bytestring >= 1.0.0.1 && < 1.1
, hourglass >= 0.2.9 && < 0.3
, asn1-types >= 0.3.1 && < 0.4
, asn1-encoding >= 0.9.3 && < 0.10
, cryptonite >= 0.6 && < 0.11
, x509 >= 1.6.3 && < 1.7
, smallcheck >= 1.1.1 && < 1.2
, tasty >= 0.10.1 && < 0.12
, tasty-hunit >= 0.9.2 && < 0.10
, tasty-smallcheck >= 0.8.0.1 && < 0.9
, pkcs7
default-language: Haskell2010
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
test-suite style-pkcs7
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: HLint.hs
build-depends: base >=4.7 && <5
, hlint ==1.*
default-language: Haskell2010
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N