[hash] remove some warnings

This commit is contained in:
Vincent Hanquez 2015-05-02 15:44:01 +01:00
parent b28109ecb4
commit da784070f7

View File

@ -19,8 +19,7 @@
module Crypto.Hash module Crypto.Hash
( (
-- * Types -- * Types
HashAlgorithm Context
, Context
, Digest , Digest
-- * Functions -- * Functions
, digestFromByteString , digestFromByteString
@ -36,15 +35,14 @@ module Crypto.Hash
, hashDigestSize , hashDigestSize
, hash , hash
, hashlazy , hashlazy
-- * Hash algorithms
, module Crypto.Hash.Algorithms , module Crypto.Hash.Algorithms
) where ) where
import Control.Monad import Control.Monad
import Crypto.Hash.Types import Crypto.Hash.Types
import Crypto.Hash.Utils
import Crypto.Hash.Algorithms import Crypto.Hash.Algorithms
import Foreign.Ptr (Ptr) import Foreign.Ptr (Ptr)
import Data.ByteString (ByteString)
import Crypto.Internal.ByteArray (ByteArrayAccess) import Crypto.Internal.ByteArray (ByteArrayAccess)
import qualified Crypto.Internal.ByteArray as B import qualified Crypto.Internal.ByteArray as B
import qualified Data.ByteString.Lazy as L import qualified Data.ByteString.Lazy as L