aboutsummaryrefslogtreecommitdiff
path: root/tests/Tests.hs
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 /tests/Tests.hs
parent8ac48890e98a4974980b8ca3d5e90a2e52c1a624 (diff)
Begin implementing symmetric encryption
Support RC4. Future commits will add support for more modern algorithms.
Diffstat (limited to 'tests/Tests.hs')
-rw-r--r--tests/Tests.hs4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/Tests.hs b/tests/Tests.hs
index 6555cf3..719d0ce 100644
--- a/tests/Tests.hs
+++ b/tests/Tests.hs
@@ -18,13 +18,15 @@ module Main
import Test.Tasty (defaultMain, testGroup)
+import qualified Codec.Crypto.EncryptionTests
import qualified Codec.Crypto.HKDFTests
import qualified Data.DigestTests
import qualified Data.HMACTests
main :: IO ()
main = defaultMain $ testGroup "btls"
- [ Codec.Crypto.HKDFTests.tests
+ [ Codec.Crypto.EncryptionTests.tests
+ , Codec.Crypto.HKDFTests.tests
, Data.DigestTests.tests
, Data.HMACTests.tests
]