pandect.algo.gost

GOST3411 algorithm implementation

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

gost

(gost x)
[Hash] GOST3411 (value -> string)

gost*

(gost* x)
[Hash] GOST3411 (raw value)

gost-bytes

(gost-bytes x)
[Hash] GOST3411 (value -> byte array)

gost-file

(gost-file x)
[Hash] GOST3411 (file path -> string)

gost-file*

(gost-file* x)
[Hash] GOST3411 (raw value)

gost-file-bytes

(gost-file-bytes x)
[Hash] GOST3411 (file path -> byte array)

gost-hmac

(gost-hmac x secret)
[HMAC] Hmac-GOST3411 (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`.

gost-hmac*

(gost-hmac* x secret)
[HMAC] Hmac-GOST3411 (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`.

gost-hmac-bytes

(gost-hmac-bytes x secret)
[HMAC] Hmac-GOST3411 (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`.

gost-hmac-file

(gost-hmac-file x secret)
[HMAC] Hmac-GOST3411 (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`.

gost-hmac-file*

(gost-hmac-file* x secret)
[HMAC] Hmac-GOST3411 (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`.

gost-hmac-file-bytes

(gost-hmac-file-bytes x secret)
[HMAC] Hmac-GOST3411 (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`.