aboutsummaryrefslogtreecommitdiff
path: root/btls.cabal
diff options
context:
space:
mode:
authorGravatar Benjamin Barenblat <bbaren@google.com>2018-08-02 17:08:44 -0400
committerGravatar Benjamin Barenblat <bbaren@google.com>2018-08-02 17:08:44 -0400
commit2152e7728db7e0cf86ea23d29a05294af24b6898 (patch)
tree68d29e2afe6a92391350e36ef67c4f7489ed715d /btls.cabal
parent5214c3f61d3aaaf18baff8020a066cc2160d612d (diff)
Begin cleaning up internal modules
Clarify the division between internal and external modules in the source by consolidating all internal modules except Data.Digest.Internal into a flatter BTLS directory.
Diffstat (limited to 'btls.cabal')
-rw-r--r--btls.cabal20
1 files changed, 10 insertions, 10 deletions
diff --git a/btls.cabal b/btls.cabal
index 02f2ed3..1ef7145 100644
--- a/btls.cabal
+++ b/btls.cabal
@@ -70,16 +70,16 @@ library
exposed-modules: Codec.Crypto.HKDF
, Data.Digest
, Data.HMAC
- other-modules: Data.Digest.Internal
- , Foreign.Ptr.Cast
- , Foreign.Ptr.ConstantTimeEquals
- , Foreign.Ptr.CreateWithFinalizer
- , Internal.Base
- , Internal.Digest
- , Internal.HKDF
- , Internal.HMAC
- , Result
- , Types
+ other-modules: BTLS.BoringSSL.Base
+ , BTLS.BoringSSL.Digest
+ , BTLS.BoringSSL.HKDF
+ , BTLS.BoringSSL.HMAC
+ , BTLS.Cast
+ , BTLS.ConstantTimeEquals
+ , BTLS.CreateWithFinalizer
+ , BTLS.Result
+ , BTLS.Types
+ , Data.Digest.Internal
c-sources: cbits/btls.c
-- Use special names for the BoringSSL libraries to avoid accidentally pulling
-- in OpenSSL.