diff --git a/Crypto/Cipher/Tests.hs b/Crypto/Cipher/Tests.hs
--- a/Crypto/Cipher/Tests.hs
+++ b/Crypto/Cipher/Tests.hs
@@ -9,9 +9,12 @@
 {-# LANGUAGE ViewPatterns #-}
 module Crypto.Cipher.Tests
     ( testBlockCipher
+    , testStreamCipher
     -- * KATs
     , defaultKATs
+    , defaultStreamKATs
     , KATs(..)
+    , KAT_Stream(..)
     , KAT_ECB(..)
     , KAT_CBC(..)
     , KAT_CTR(..)
@@ -32,6 +35,7 @@
     ++ testModes cipher
     )
 
+-- | Return tests for a specific streamcipher and a list of KATs
 testStreamCipher :: StreamCipher a => [KAT_Stream] -> a -> Test
 testStreamCipher kats cipher = testGroup (cipherName cipher)
     (  (if kats == defaultStreamKATs then [] else [testStreamKATs kats cipher])
diff --git a/crypto-cipher-tests.cabal b/crypto-cipher-tests.cabal
--- a/crypto-cipher-tests.cabal
+++ b/crypto-cipher-tests.cabal
@@ -1,5 +1,5 @@
 Name:                crypto-cipher-tests
-Version:             0.0.5
+Version:             0.0.6
 Synopsis:            Generic cryptography cipher tests
 Description:         Generic cryptography cipher tests
 License:             BSD3
