prozacchiwawa / elm-keccak / Keccak.Int

Shortcut hash functions using lists of int, as with the original API.

fips202_sha3_224 : List Basics.Int -> List Basics.Int

Compute the sha3 224 of a list of byte width integers (0-255) as a list of byte width integers.

fips202_sha3_256 : List Basics.Int -> List Basics.Int

Compute the sha3 256 of a list of byte width integers (0-255) as a list of byte width integers.

fips202_sha3_384 : List Basics.Int -> List Basics.Int

Compute the sha3 384 of a list of byte width integers (0-255) as a list of byte width integers.

fips202_sha3_512 : List Basics.Int -> List Basics.Int

Compute the sha3 512 of a list of byte width integers (0-255) as a list of byte width integers.

ethereum_keccak_256 : List Basics.Int -> List Basics.Int

Compute the ethereum style 256-bit hash of a list of byte width integers (0-255) as a list of byte width integers.