pandect.algo.keccak-256

Keccak-256 algorithm implementation

(requires `org.bouncycastle/bcprov-jdk15on` to be on the classpath)

keccak-256

(keccak-256 x)
[Hash] Keccak-256 (value -> string)

keccak-256*

(keccak-256* x)
[Hash] Keccak-256 (raw value)

keccak-256-bytes

(keccak-256-bytes x)
[Hash] Keccak-256 (value -> byte array)

keccak-256-file

(keccak-256-file x)
[Hash] Keccak-256 (file path -> string)

keccak-256-file*

(keccak-256-file* x)
[Hash] Keccak-256 (raw value)

keccak-256-file-bytes

(keccak-256-file-bytes x)
[Hash] Keccak-256 (file path -> byte array)

keccak-256-hmac

(keccak-256-hmac x secret)
[HMAC] Hmac-Keccak256 (value -> string)

'secret' can be given as a byte array, string, java.io.File, java.io.InputStream
or any value implementing `pandect.utils.convert/ByteConvertable`.

keccak-256-hmac*

(keccak-256-hmac* x secret)
[HMAC] Hmac-Keccak256 (raw value)

'secret' can be given as a byte array, string, java.io.File, java.io.InputStream
or any value implementing `pandect.utils.convert/ByteConvertable`.

keccak-256-hmac-bytes

(keccak-256-hmac-bytes x secret)
[HMAC] Hmac-Keccak256 (value -> byte array)

'secret' can be given as a byte array, string, java.io.File, java.io.InputStream
or any value implementing `pandect.utils.convert/ByteConvertable`.

keccak-256-hmac-file

(keccak-256-hmac-file x secret)
[HMAC] Hmac-Keccak256 (file path -> string)

'secret' can be given as a byte array, string, java.io.File, java.io.InputStream
or any value implementing `pandect.utils.convert/ByteConvertable`.

keccak-256-hmac-file*

(keccak-256-hmac-file* x secret)
[HMAC] Hmac-Keccak256 (raw value)

'secret' can be given as a byte array, string, java.io.File, java.io.InputStream
or any value implementing `pandect.utils.convert/ByteConvertable`.

keccak-256-hmac-file-bytes

(keccak-256-hmac-file-bytes x secret)
[HMAC] Hmac-Keccak256 (file path -> byte array)

'secret' can be given as a byte array, string, java.io.File, java.io.InputStream
or any value implementing `pandect.utils.convert/ByteConvertable`.