pandect.algo.md4

MD4 algorithm implementation

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

md4

(md4 x)
[Hash] MD4 (value -> string)

md4*

(md4* x)
[Hash] MD4 (raw value)

md4-bytes

(md4-bytes x)
[Hash] MD4 (value -> byte array)

md4-file

(md4-file x)
[Hash] MD4 (file path -> string)

md4-file*

(md4-file* x)
[Hash] MD4 (raw value)

md4-file-bytes

(md4-file-bytes x)
[Hash] MD4 (file path -> byte array)

md4-hmac

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

md4-hmac*

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

md4-hmac-bytes

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

md4-hmac-file

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

md4-hmac-file*

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

md4-hmac-file-bytes

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