packages feed

crypton-1.0.2: Crypto/Hash/Skein256.hs

{-# LANGUAGE DataKinds #-}
{-# LANGUAGE DeriveDataTypeable #-}
{-# LANGUAGE ForeignFunctionInterface #-}
{-# LANGUAGE TypeFamilies #-}

-- |
-- Module      : Crypto.Hash.Skein256
-- License     : BSD-style
-- Maintainer  : Vincent Hanquez <vincent@snarc.org>
-- Stability   : experimental
-- Portability : unknown
--
-- Module containing the binding functions to work with the
-- Skein256 cryptographic hash.
module Crypto.Hash.Skein256 (
    Skein256_224 (..),
    Skein256_256 (..),
) where

import Crypto.Hash.Types
import Data.Data
import Data.Word (Word32, Word8)
import Foreign.Ptr (Ptr)

-- | Skein256 (224 bits) cryptographic hash algorithm
data Skein256_224 = Skein256_224
    deriving (Show, Data)

instance HashAlgorithm Skein256_224 where
    type HashBlockSize Skein256_224 = 32
    type HashDigestSize Skein256_224 = 28
    type HashInternalContextSize Skein256_224 = 96
    hashBlockSize _ = 32
    hashDigestSize _ = 28
    hashInternalContextSize _ = 96
    hashInternalInit p = c_skein256_init p 224
    hashInternalUpdate = c_skein256_update
    hashInternalFinalize p = c_skein256_finalize p 224

-- | Skein256 (256 bits) cryptographic hash algorithm
data Skein256_256 = Skein256_256
    deriving (Show, Data)

instance HashAlgorithm Skein256_256 where
    type HashBlockSize Skein256_256 = 32
    type HashDigestSize Skein256_256 = 32
    type HashInternalContextSize Skein256_256 = 96
    hashBlockSize _ = 32
    hashDigestSize _ = 32
    hashInternalContextSize _ = 96
    hashInternalInit p = c_skein256_init p 256
    hashInternalUpdate = c_skein256_update
    hashInternalFinalize p = c_skein256_finalize p 256

foreign import ccall unsafe "crypton_skein256_init"
    c_skein256_init :: Ptr (Context a) -> Word32 -> IO ()

foreign import ccall "crypton_skein256_update"
    c_skein256_update :: Ptr (Context a) -> Ptr Word8 -> Word32 -> IO ()

foreign import ccall unsafe "crypton_skein256_finalize"
    c_skein256_finalize :: Ptr (Context a) -> Word32 -> Ptr (Digest a) -> IO ()