summaryrefslogtreecommitdiff
path: root/openpgp-util.cabal
diff options
context:
space:
mode:
authorJoe Crayne <joe@jerkface.net>2019-11-14 16:45:14 -0500
committerJoe Crayne <joe@jerkface.net>2019-11-14 16:45:14 -0500
commitb42c0d847a785487f3222b0d5360746d25d3209c (patch)
tree11ef85e3e4577eb047227f9938761bdac94a1309 /openpgp-util.cabal
parent76bf7e08bccbb1a3a689068016b8a9c29d1e060e (diff)
Cv25519 encryption.
Diffstat (limited to 'openpgp-util.cabal')
-rw-r--r--openpgp-util.cabal5
1 files changed, 4 insertions, 1 deletions
diff --git a/openpgp-util.cabal b/openpgp-util.cabal
index b0d7f53..ae8d373 100644
--- a/openpgp-util.cabal
+++ b/openpgp-util.cabal
@@ -122,12 +122,14 @@ Flag cryptonite
122 122
123library 123library
124 exposed-modules: 124 exposed-modules:
125 Data.OpenPGP.Util
126 Data.OpenPGP 125 Data.OpenPGP
126 Data.OpenPGP.Util
127 Data.OpenPGP.Util.Cv25519
127 Crypto.Cipher.Feistel 128 Crypto.Cipher.Feistel
128 Crypto.Cipher.Cast5 129 Crypto.Cipher.Cast5
129 Crypto.Cipher.SBox 130 Crypto.Cipher.SBox
130 Crypto.Cipher.ThomasToVincent 131 Crypto.Cipher.ThomasToVincent
132 Crypto.JOSE.AESKW
131 other-modules: 133 other-modules:
132 Data.OpenPGP.Internal 134 Data.OpenPGP.Internal
133 Data.OpenPGP.Util.Fingerprint 135 Data.OpenPGP.Util.Fingerprint
@@ -140,6 +142,7 @@ library
140 build-depends: 142 build-depends:
141 base == 4.*, 143 base == 4.*,
142 transformers, 144 transformers,
145 mtl,
143 bytestring, 146 bytestring,
144 binary >= 0.5.1.0, 147 binary >= 0.5.1.0,
145 utf8-string, 148 utf8-string,