forked from tel/saltine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsaltine.cabal
83 lines (78 loc) · 2.7 KB
/
saltine.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
77
78
79
80
81
82
83
name: saltine
version: 0.0.0.4
synopsis: Cryptography that's easy to digest (NaCl/libsodium bindings).
description:
/NaCl/ (pronounced \"salt\") is a new easy-to-use high-speed software
library for network communica tion, encryption, decryption,
signatures, etc. NaCl's goal is to provide all of the core
operations needed to build higher-level cryptographic tools.
.
<http://nacl.cr.yp.to/>
.
/Sodium/ is a portable, cross-compilable, installable, packageable
crypto library based on NaCl, with a compatible API.
.
<https://github.com/jedisct1/libsodium>
.
/Saltine/ is a Haskell binding to the NaCl primitives going through
Sodium for build convenience and, eventually, portability.
license: MIT
license-file: LICENSE
author: Joseph Abrahamson
maintainer: Joseph Abrahamson <[email protected]>
bug-reports: http://github.com/tel/saltine/issues
copyright: Copyright (c) Joseph Abrahamson 2013
category: Cryptography
build-type: Simple
cabal-version: >=1.10
tested-with: GHC==7.6.3, GHC==7.8.4, GHC==7.10.1
source-repository head
type: git
location: https://github.com/tel/saltine.git
library
hs-source-dirs: src
exposed-modules:
Crypto.Saltine
Crypto.Saltine.Internal.ByteSizes
Crypto.Saltine.Core.SecretBox
Crypto.Saltine.Core.Box
Crypto.Saltine.Core.Stream
Crypto.Saltine.Core.Auth
Crypto.Saltine.Core.OneTimeAuth
Crypto.Saltine.Core.Sign
Crypto.Saltine.Core.Hash
Crypto.Saltine.Core.ScalarMult
Crypto.Saltine.Class
other-modules:
Crypto.Saltine.Internal.Util
extra-libraries: sodium
cc-options: -Wall
ghc-options: -Wall -funbox-strict-fields
default-language: Haskell2010
build-depends:
base >= 4.5 && < 5
, bytestring
, profunctors
test-suite tests
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
AuthProperties
BoxProperties
OneTimeAuthProperties
ScalarMultProperties
SecretBoxProperties
SignProperties
StreamProperties
Util
ghc-options: -Wall -threaded -O0 -rtsopts
hs-source-dirs: tests
default-language: Haskell2010
build-depends:
base >= 4.5 && < 5
, saltine
, bytestring
, vector
, QuickCheck
, test-framework-quickcheck2
, test-framework