Add support_blake2 flag.
This commit is contained in:
parent
49bcf4f3f7
commit
6020bde0e2
@ -1,3 +1,4 @@
|
|||||||
|
{-# LANGUAGE CPP #-}
|
||||||
-- |
|
-- |
|
||||||
-- Module : Crypto.Hash.Algorithms
|
-- Module : Crypto.Hash.Algorithms
|
||||||
-- License : BSD-style
|
-- License : BSD-style
|
||||||
@ -10,10 +11,12 @@
|
|||||||
module Crypto.Hash.Algorithms
|
module Crypto.Hash.Algorithms
|
||||||
( HashAlgorithm
|
( HashAlgorithm
|
||||||
-- * hash algorithms
|
-- * hash algorithms
|
||||||
|
#ifdef SUPPORT_BLAKE2
|
||||||
, Blake2s_256(..)
|
, Blake2s_256(..)
|
||||||
, Blake2sp_256(..)
|
, Blake2sp_256(..)
|
||||||
, Blake2b_512(..)
|
, Blake2b_512(..)
|
||||||
, Blake2bp_512(..)
|
, Blake2bp_512(..)
|
||||||
|
#endif
|
||||||
, MD2(..)
|
, MD2(..)
|
||||||
, MD4(..)
|
, MD4(..)
|
||||||
, MD5(..)
|
, MD5(..)
|
||||||
@ -44,10 +47,12 @@ module Crypto.Hash.Algorithms
|
|||||||
) where
|
) where
|
||||||
|
|
||||||
import Crypto.Hash.Types (HashAlgorithm)
|
import Crypto.Hash.Types (HashAlgorithm)
|
||||||
|
#ifdef SUPPORT_BLAKE2
|
||||||
import Crypto.Hash.Blake2s
|
import Crypto.Hash.Blake2s
|
||||||
import Crypto.Hash.Blake2sp
|
import Crypto.Hash.Blake2sp
|
||||||
import Crypto.Hash.Blake2b
|
import Crypto.Hash.Blake2b
|
||||||
import Crypto.Hash.Blake2bp
|
import Crypto.Hash.Blake2bp
|
||||||
|
#endif
|
||||||
import Crypto.Hash.MD2
|
import Crypto.Hash.MD2
|
||||||
import Crypto.Hash.MD4
|
import Crypto.Hash.MD4
|
||||||
import Crypto.Hash.MD5
|
import Crypto.Hash.MD5
|
||||||
|
|||||||
@ -63,6 +63,11 @@ Flag support_pclmuldq
|
|||||||
Default: False
|
Default: False
|
||||||
Manual: True
|
Manual: True
|
||||||
|
|
||||||
|
Flag support_blake2
|
||||||
|
Description: Allow compilation of Blake2 hash algorithms
|
||||||
|
Default: True
|
||||||
|
Manual: True
|
||||||
|
|
||||||
Flag integer-gmp
|
Flag integer-gmp
|
||||||
Description: Whether or not to use GMP for some functions
|
Description: Whether or not to use GMP for some functions
|
||||||
Default: True
|
Default: True
|
||||||
@ -149,10 +154,6 @@ Library
|
|||||||
Crypto.Hash.MD2
|
Crypto.Hash.MD2
|
||||||
Crypto.Hash.MD4
|
Crypto.Hash.MD4
|
||||||
Crypto.Hash.MD5
|
Crypto.Hash.MD5
|
||||||
Crypto.Hash.Blake2s
|
|
||||||
Crypto.Hash.Blake2sp
|
|
||||||
Crypto.Hash.Blake2b
|
|
||||||
Crypto.Hash.Blake2bp
|
|
||||||
Crypto.Hash.RIPEMD160
|
Crypto.Hash.RIPEMD160
|
||||||
Crypto.Hash.Skein256
|
Crypto.Hash.Skein256
|
||||||
Crypto.Hash.Skein512
|
Crypto.Hash.Skein512
|
||||||
@ -199,10 +200,6 @@ Library
|
|||||||
, cbits/cryptonite_md2.c
|
, cbits/cryptonite_md2.c
|
||||||
, cbits/cryptonite_md4.c
|
, cbits/cryptonite_md4.c
|
||||||
, cbits/cryptonite_md5.c
|
, cbits/cryptonite_md5.c
|
||||||
, cbits/cryptonite_blake2s.c
|
|
||||||
, cbits/cryptonite_blake2sp.c
|
|
||||||
, cbits/cryptonite_blake2b.c
|
|
||||||
, cbits/cryptonite_blake2bp.c
|
|
||||||
, cbits/cryptonite_ripemd.c
|
, cbits/cryptonite_ripemd.c
|
||||||
, cbits/cryptonite_skein256.c
|
, cbits/cryptonite_skein256.c
|
||||||
, cbits/cryptonite_skein512.c
|
, cbits/cryptonite_skein512.c
|
||||||
@ -210,10 +207,6 @@ Library
|
|||||||
, cbits/cryptonite_whirlpool.c
|
, cbits/cryptonite_whirlpool.c
|
||||||
, cbits/cryptonite_scrypt.c
|
, cbits/cryptonite_scrypt.c
|
||||||
, cbits/cryptonite_sysrand.c
|
, cbits/cryptonite_sysrand.c
|
||||||
, cbits/blake2/blake2s.c
|
|
||||||
, cbits/blake2/blake2sp.c
|
|
||||||
, cbits/blake2/blake2b.c
|
|
||||||
, cbits/blake2/blake2bp.c
|
|
||||||
include-dirs: cbits cbits/ed25519 cbits/blake2
|
include-dirs: cbits cbits/ed25519 cbits/blake2
|
||||||
|
|
||||||
-- FIXME armel or mispel is also little endian.
|
-- FIXME armel or mispel is also little endian.
|
||||||
@ -237,6 +230,21 @@ Library
|
|||||||
CC-options: -msse4.1 -mpclmul -DWITH_PCLMUL
|
CC-options: -msse4.1 -mpclmul -DWITH_PCLMUL
|
||||||
C-sources: cbits/aes/x86ni.c
|
C-sources: cbits/aes/x86ni.c
|
||||||
|
|
||||||
|
if flag(support_blake2)
|
||||||
|
CPP-options: -DSUPPORT_BLAKE2
|
||||||
|
C-sources: cbits/cryptonite_blake2s.c
|
||||||
|
, cbits/cryptonite_blake2sp.c
|
||||||
|
, cbits/cryptonite_blake2b.c
|
||||||
|
, cbits/cryptonite_blake2bp.c
|
||||||
|
, cbits/blake2/blake2s.c
|
||||||
|
, cbits/blake2/blake2sp.c
|
||||||
|
, cbits/blake2/blake2b.c
|
||||||
|
, cbits/blake2/blake2bp.c
|
||||||
|
Other-modules: Crypto.Hash.Blake2s
|
||||||
|
Crypto.Hash.Blake2sp
|
||||||
|
Crypto.Hash.Blake2b
|
||||||
|
Crypto.Hash.Blake2bp
|
||||||
|
|
||||||
if os(windows)
|
if os(windows)
|
||||||
cpp-options: -DWINDOWS
|
cpp-options: -DWINDOWS
|
||||||
Build-Depends: Win32
|
Build-Depends: Win32
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user