mirror of
https://github.com/logos-storage/nim-goldilocks-hash.git
synced 2026-05-29 12:59:26 +00:00
22 lines
587 B
Haskell
22 lines
587 B
Haskell
|
|
|
||
|
|
module GenAll where
|
||
|
|
|
||
|
|
--------------------------------------------------------------------------------
|
||
|
|
|
||
|
|
import qualified TestGen.TestGoldilocks as F
|
||
|
|
import qualified TestGen.TestPermutation as P
|
||
|
|
import qualified TestGen.TestSponge as S
|
||
|
|
import qualified TestGen.TestMerkle as M
|
||
|
|
|
||
|
|
import Common
|
||
|
|
|
||
|
|
--------------------------------------------------------------------------------
|
||
|
|
|
||
|
|
writeSingleHash :: Hash -> IO ()
|
||
|
|
writeSingleHash hash = do
|
||
|
|
P.writeTests hash
|
||
|
|
S.writeTests hash
|
||
|
|
M.writeTests hash
|
||
|
|
|
||
|
|
--------------------------------------------------------------------------------
|