pandect.algo.sha224
SHA-224 algorithm implementation
(requires `org.bouncycastle/bcprov-jdk15on` to be on the classpath)
sha224
(sha224 x)
[Hash] SHA-224 (value -> string)
sha224*
(sha224* x)
[Hash] SHA-224 (raw value)
sha224-bytes
(sha224-bytes x)
[Hash] SHA-224 (value -> byte array)
sha224-file
(sha224-file x)
[Hash] SHA-224 (file path -> string)
sha224-file*
(sha224-file* x)
[Hash] SHA-224 (raw value)
sha224-file-bytes
(sha224-file-bytes x)
[Hash] SHA-224 (file path -> byte array)
sha224-hmac
(sha224-hmac x secret)
[HMAC] Hmac-SHA224 (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`.
sha224-hmac*
(sha224-hmac* x secret)
[HMAC] Hmac-SHA224 (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`.
sha224-hmac-bytes
(sha224-hmac-bytes x secret)
[HMAC] Hmac-SHA224 (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`.
sha224-hmac-file
(sha224-hmac-file x secret)
[HMAC] Hmac-SHA224 (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`.
sha224-hmac-file*
(sha224-hmac-file* x secret)
[HMAC] Hmac-SHA224 (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`.
sha224-hmac-file-bytes
(sha224-hmac-file-bytes x secret)
[HMAC] Hmac-SHA224 (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`.