cleanup extensions in modules

This commit is contained in:
Vincent Hanquez 2015-04-05 07:47:16 +01:00
parent 684e0ea42a
commit 3308ec0d92
30 changed files with 15 additions and 60 deletions

View File

@ -1,5 +1,3 @@
{-# LANGUAGE ForeignFunctionInterface, CPP, MultiParamTypeClasses #-}
-- |
-- Module : Crypto.Hash.Internal.Kekkak
-- License : BSD-style
@ -9,6 +7,7 @@
--
-- A module containing Kekkak bindings
--
{-# LANGUAGE ForeignFunctionInterface #-}
module Crypto.Hash.Internal.Kekkak
( Ctx(..)
-- * Internal values

View File

@ -1,5 +1,3 @@
{-# LANGUAGE ForeignFunctionInterface, CPP, MultiParamTypeClasses #-}
-- |
-- Module : Crypto.Hash.Internal.MD2
-- License : BSD-style
@ -9,6 +7,7 @@
--
-- A module containing MD2 bindings
--
{-# LANGUAGE ForeignFunctionInterface #-}
module Crypto.Hash.Internal.MD2
( Ctx(..)
-- * Internal values

View File

@ -1,5 +1,3 @@
{-# LANGUAGE ForeignFunctionInterface, CPP, MultiParamTypeClasses #-}
-- |
-- Module : Crypto.Hash.Internal.MD4
-- License : BSD-style
@ -9,6 +7,7 @@
--
-- A module containing MD4 bindings
--
{-# LANGUAGE ForeignFunctionInterface #-}
module Crypto.Hash.Internal.MD4
( Ctx(..)
-- * Internal values

View File

@ -1,5 +1,3 @@
{-# LANGUAGE ForeignFunctionInterface, CPP, MultiParamTypeClasses #-}
-- |
-- Module : Crypto.Hash.Internal.MD5
-- License : BSD-style
@ -9,6 +7,7 @@
--
-- A module containing MD5 bindings
--
{-# LANGUAGE ForeignFunctionInterface #-}
module Crypto.Hash.Internal.MD5
( Ctx(..)
-- * Internal values

View File

@ -1,5 +1,3 @@
{-# LANGUAGE ForeignFunctionInterface, CPP, MultiParamTypeClasses #-}
-- |
-- Module : Crypto.Hash.Internal.RIPEMD160
-- License : BSD-style
@ -9,6 +7,7 @@
--
-- A module containing RIPEMD160 bindings
--
{-# LANGUAGE ForeignFunctionInterface #-}
module Crypto.Hash.Internal.RIPEMD160
( Ctx(..)
-- * Internal values

View File

@ -1,5 +1,3 @@
{-# LANGUAGE ForeignFunctionInterface, CPP, MultiParamTypeClasses #-}
-- |
-- Module : Crypto.Hash.Internal.SHA1
-- License : BSD-style
@ -9,6 +7,7 @@
--
-- A module containing SHA1 bindings
--
{-# LANGUAGE ForeignFunctionInterface #-}
module Crypto.Hash.Internal.SHA1
( Ctx(..)
-- * Internal values

View File

@ -1,5 +1,3 @@
{-# LANGUAGE ForeignFunctionInterface, CPP, MultiParamTypeClasses #-}
-- |
-- Module : Crypto.Hash.Internal.SHA224
-- License : BSD-style
@ -9,6 +7,7 @@
--
-- A module containing SHA224 bindings
--
{-# LANGUAGE ForeignFunctionInterface #-}
module Crypto.Hash.Internal.SHA224
( Ctx(..)
-- * Internal values

View File

@ -1,5 +1,3 @@
{-# LANGUAGE ForeignFunctionInterface, CPP, MultiParamTypeClasses #-}
-- |
-- Module : Crypto.Hash.Internal.SHA256
-- License : BSD-style
@ -9,6 +7,7 @@
--
-- A module containing SHA256 bindings
--
{-# LANGUAGE ForeignFunctionInterface #-}
module Crypto.Hash.Internal.SHA256
( Ctx(..)
-- * Internal values

View File

@ -1,5 +1,3 @@
{-# LANGUAGE ForeignFunctionInterface, CPP, MultiParamTypeClasses #-}
-- |
-- Module : Crypto.Hash.Internal.SHA3
-- License : BSD-style
@ -9,6 +7,7 @@
--
-- A module containing SHA3 bindings
--
{-# LANGUAGE ForeignFunctionInterface #-}
module Crypto.Hash.Internal.SHA3
( Ctx(..)
-- * Internal values

View File

@ -1,5 +1,3 @@
{-# LANGUAGE ForeignFunctionInterface, CPP, MultiParamTypeClasses #-}
-- |
-- Module : Crypto.Hash.Internal.SHA384
-- License : BSD-style
@ -9,6 +7,7 @@
--
-- A module containing SHA384 bindings
--
{-# LANGUAGE ForeignFunctionInterface #-}
module Crypto.Hash.Internal.SHA384
( Ctx(..)
-- * Internal values

View File

@ -1,5 +1,3 @@
{-# LANGUAGE ForeignFunctionInterface, CPP, MultiParamTypeClasses #-}
-- |
-- Module : Crypto.Hash.Internal.SHA512
-- License : BSD-style
@ -9,6 +7,7 @@
--
-- A module containing SHA512 bindings
--
{-# LANGUAGE ForeignFunctionInterface #-}
module Crypto.Hash.Internal.SHA512
( Ctx(..)
-- * Internal values

View File

@ -1,5 +1,3 @@
{-# LANGUAGE ForeignFunctionInterface, CPP, MultiParamTypeClasses #-}
-- |
-- Module : Crypto.Hash.Internal.Skein256
-- License : BSD-style
@ -9,6 +7,7 @@
--
-- A module containing Skein256 bindings
--
{-# LANGUAGE ForeignFunctionInterface #-}
module Crypto.Hash.Internal.Skein256
( Ctx(..)
-- * Internal values

View File

@ -1,5 +1,3 @@
{-# LANGUAGE ForeignFunctionInterface, CPP, MultiParamTypeClasses #-}
-- |
-- Module : Crypto.Hash.Internal.Skein512
-- License : BSD-style
@ -9,6 +7,7 @@
--
-- A module containing Skein512 bindings
--
{-# LANGUAGE ForeignFunctionInterface #-}
module Crypto.Hash.Internal.Skein512
( Ctx(..)
-- * Internal values

View File

@ -1,5 +1,3 @@
{-# LANGUAGE ForeignFunctionInterface, CPP, MultiParamTypeClasses #-}
-- |
-- Module : Crypto.Hash.Internal.Tiger
-- License : BSD-style
@ -9,6 +7,7 @@
--
-- A module containing Tiger bindings
--
{-# LANGUAGE ForeignFunctionInterface #-}
module Crypto.Hash.Internal.Tiger
( Ctx(..)
-- * Internal values

View File

@ -1,5 +1,3 @@
{-# LANGUAGE ForeignFunctionInterface, CPP, MultiParamTypeClasses #-}
-- |
-- Module : Crypto.Hash.Internal.Whirlpool
-- License : BSD-style
@ -9,6 +7,7 @@
--
-- A module containing Whirlpool bindings
--
{-# LANGUAGE ForeignFunctionInterface #-}
module Crypto.Hash.Internal.Whirlpool
( Ctx(..)
-- * Internal values

View File

@ -1,5 +1,3 @@
{-# LANGUAGE ForeignFunctionInterface #-}
-- |
-- Module : Crypto.Hash.Kekkak
-- License : BSD-style

View File

@ -1,5 +1,3 @@
{-# LANGUAGE ForeignFunctionInterface #-}
-- |
-- Module : Crypto.Hash.MD2
-- License : BSD-style

View File

@ -1,5 +1,3 @@
{-# LANGUAGE ForeignFunctionInterface #-}
-- |
-- Module : Crypto.Hash.MD4
-- License : BSD-style

View File

@ -1,5 +1,3 @@
{-# LANGUAGE ForeignFunctionInterface #-}
-- |
-- Module : Crypto.Hash.MD5
-- License : BSD-style

View File

@ -1,5 +1,3 @@
{-# LANGUAGE ForeignFunctionInterface #-}
-- |
-- Module : Crypto.Hash.RIPEMD160
-- License : BSD-style

View File

@ -1,5 +1,3 @@
{-# LANGUAGE ForeignFunctionInterface #-}
-- |
-- Module : Crypto.Hash.SHA1
-- License : BSD-style

View File

@ -1,5 +1,3 @@
{-# LANGUAGE ForeignFunctionInterface #-}
-- |
-- Module : Crypto.Hash.SHA224
-- License : BSD-style

View File

@ -1,5 +1,3 @@
{-# LANGUAGE ForeignFunctionInterface #-}
-- |
-- Module : Crypto.Hash.SHA256
-- License : BSD-style

View File

@ -1,5 +1,3 @@
{-# LANGUAGE ForeignFunctionInterface #-}
-- |
-- Module : Crypto.Hash.SHA3
-- License : BSD-style

View File

@ -1,5 +1,3 @@
{-# LANGUAGE ForeignFunctionInterface #-}
-- |
-- Module : Crypto.Hash.SHA384
-- License : BSD-style

View File

@ -1,5 +1,3 @@
{-# LANGUAGE ForeignFunctionInterface #-}
-- |
-- Module : Crypto.Hash.SHA512
-- License : BSD-style

View File

@ -1,5 +1,3 @@
{-# LANGUAGE ForeignFunctionInterface #-}
-- |
-- Module : Crypto.Hash.Skein256
-- License : BSD-style

View File

@ -1,5 +1,3 @@
{-# LANGUAGE ForeignFunctionInterface #-}
-- |
-- Module : Crypto.Hash.Skein512
-- License : BSD-style

View File

@ -1,5 +1,3 @@
{-# LANGUAGE ForeignFunctionInterface #-}
-- |
-- Module : Crypto.Hash.Tiger
-- License : BSD-style

View File

@ -1,5 +1,3 @@
{-# LANGUAGE ForeignFunctionInterface #-}
-- |
-- Module : Crypto.Hash.Whirlpool
-- License : BSD-style