aboutsummaryrefslogtreecommitdiff
path: root/btls.cabal
diff options
context:
space:
mode:
authorGravatar Benjamin Barenblat <bbaren@google.com>2018-09-28 18:33:35 -0400
committerGravatar Benjamin Barenblat <bbaren@google.com>2018-09-28 18:33:35 -0400
commite74149a7569afd1ea7d67c77f40c37471e7e3e58 (patch)
treed8478e569eade926a72829eee9d3afe0e8f12710 /btls.cabal
parent8ac48890e98a4974980b8ca3d5e90a2e52c1a624 (diff)
Begin implementing symmetric encryption
Support RC4. Future commits will add support for more modern algorithms.
Diffstat (limited to 'btls.cabal')
-rw-r--r--btls.cabal6
1 files changed, 5 insertions, 1 deletions
diff --git a/btls.cabal b/btls.cabal
index ab14011..d144800 100644
--- a/btls.cabal
+++ b/btls.cabal
@@ -68,11 +68,13 @@ library
-Wunused-type-variables
-Wwrong-do-bind
-optl-Wl,-z,relro -optl-Wl,-z,now -optl-Wl,-s
- exposed-modules: Codec.Crypto.HKDF
+ exposed-modules: Codec.Crypto.Encryption
+ , Codec.Crypto.HKDF
, Data.Digest
, Data.HMAC
, System.Random.Crypto
other-modules: BTLS.BoringSSL.Base
+ , BTLS.BoringSSL.Cipher
, BTLS.BoringSSL.Digest
, BTLS.BoringSSL.Err
, BTLS.BoringSSL.HKDF
@@ -82,6 +84,7 @@ library
, BTLS.BoringSSL.Rand
, BTLS.Buffer
, BTLS.CreateWithFinalizer
+
, BTLS.Result
, BTLS.Show
, BTLS.Types
@@ -130,6 +133,7 @@ test-suite tests
main-is: Tests.hs
other-modules: BTLS.Assertions
, BTLS.TestUtilities
+ , Codec.Crypto.EncryptionTests
, Codec.Crypto.HKDFTests
, Data.DigestTests
, Data.Digest.HashTests