1-- |
2-- Module      : Crypto.Hash.Whirlpool
3-- License     : BSD-style
4-- Maintainer  : Vincent Hanquez <vincent@snarc.org>
5-- Stability   : experimental
6-- Portability : unknown
7--
8-- Module containing the binding functions to work with the
9-- Whirlpool cryptographic hash.
10--
11{-# LANGUAGE ForeignFunctionInterface #-}
12{-# LANGUAGE DeriveDataTypeable #-}
13{-# LANGUAGE DataKinds #-}
14{-# LANGUAGE TypeFamilies #-}
15module Crypto.Hash.Whirlpool ( Whirlpool (..) ) where
16
17import           Crypto.Hash.Types
18import           Foreign.Ptr (Ptr)
19import           Data.Data
20import           Data.Word (Word8, Word32)
21
22-- | Whirlpool cryptographic hash algorithm
23data Whirlpool = Whirlpool
24    deriving (Show,Data)
25
26instance HashAlgorithm Whirlpool where
27    type HashBlockSize           Whirlpool = 64
28    type HashDigestSize          Whirlpool = 64
29    type HashInternalContextSize Whirlpool = 168
30    hashBlockSize  _          = 64
31    hashDigestSize _          = 64
32    hashInternalContextSize _ = 168
33    hashInternalInit          = c_whirlpool_init
34    hashInternalUpdate        = c_whirlpool_update
35    hashInternalFinalize      = c_whirlpool_finalize
36
37foreign import ccall unsafe "cryptonite_whirlpool_init"
38    c_whirlpool_init :: Ptr (Context a)-> IO ()
39
40foreign import ccall "cryptonite_whirlpool_update"
41    c_whirlpool_update :: Ptr (Context a) -> Ptr Word8 -> Word32 -> IO ()
42
43foreign import ccall unsafe "cryptonite_whirlpool_finalize"
44    c_whirlpool_finalize :: Ptr (Context a) -> Ptr (Digest a) -> IO ()
45