1-- |
2-- Module      : Crypto.Hash.MD4
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-- MD4 cryptographic hash.
10--
11{-# LANGUAGE ForeignFunctionInterface #-}
12{-# LANGUAGE DeriveDataTypeable #-}
13{-# LANGUAGE DataKinds #-}
14{-# LANGUAGE TypeFamilies #-}
15module Crypto.Hash.MD4 ( MD4 (..) ) where
16
17import           Crypto.Hash.Types
18import           Foreign.Ptr (Ptr)
19import           Data.Data
20import           Data.Word (Word8, Word32)
21
22-- | MD4 cryptographic hash algorithm
23data MD4 = MD4
24    deriving (Show,Data)
25
26instance HashAlgorithm MD4 where
27    type HashBlockSize           MD4 = 64
28    type HashDigestSize          MD4 = 16
29    type HashInternalContextSize MD4 = 96
30    hashBlockSize  _          = 64
31    hashDigestSize _          = 16
32    hashInternalContextSize _ = 96
33    hashInternalInit          = c_md4_init
34    hashInternalUpdate        = c_md4_update
35    hashInternalFinalize      = c_md4_finalize
36
37foreign import ccall unsafe "cryptonite_md4_init"
38    c_md4_init :: Ptr (Context a)-> IO ()
39
40foreign import ccall "cryptonite_md4_update"
41    c_md4_update :: Ptr (Context a) -> Ptr Word8 -> Word32 -> IO ()
42
43foreign import ccall unsafe "cryptonite_md4_finalize"
44    c_md4_finalize :: Ptr (Context a) -> Ptr (Digest a) -> IO ()
45