File: Main.hs

package info (click to toggle)
haskell-cryptostore 0.3.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 964 kB
  • sloc: haskell: 8,241; makefile: 3
file content (26 lines) | stat: -rw-r--r-- 458 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
-- | cryptostore test suite.
module Main (main) where

import Test.Tasty

import KeyWrap.AES
import KeyWrap.TripleDES
import KeyWrap.RC2
import Cipher.RC2
import CMS.Tests
import PKCS12.Tests
import PKCS8.Tests
import X509.Tests

-- | Run the test suite.
main :: IO ()
main = defaultMain $ testGroup "cryptostore"
    [ aeskwTests
    , tripledeskwTests
    , rc2kwTests
    , rc2Tests
    , cmsTests
    , x509Tests
    , pkcs8Tests
    , pkcs12Tests
    ]