From e74149a7569afd1ea7d67c77f40c37471e7e3e58 Mon Sep 17 00:00:00 2001 From: Benjamin Barenblat Date: Fri, 28 Sep 2018 18:33:35 -0400 Subject: Begin implementing symmetric encryption Support RC4. Future commits will add support for more modern algorithms. --- tests/Tests.hs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'tests/Tests.hs') 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 ] -- cgit v1.2.3