saltine-0.0.0.3: tests/Main.hs
{-# LANGUAGE OverloadedStrings #-}
module Main where
import SecretBoxProperties (testSecretBox)
import BoxProperties (testBox)
import StreamProperties (testStream)
import AuthProperties (testAuth)
import OneTimeAuthProperties (testOneTimeAuth)
import SignProperties (testSign)
import ScalarMultProperties (testScalarMult)
import Test.Framework
main :: IO ()
main = defaultMain [
testBox,
testSecretBox,
testStream,
testAuth,
testOneTimeAuth,
testSign,
testScalarMult
]