Liking cljdoc? Tell your friends :D

pandect.algo.sha384

SHA-384 algorithm implementation

SHA-384 algorithm implementation
raw docstring

sha384clj

(sha384 x)

[Hash] SHA-384 (value -> string)

[Hash] SHA-384 (value -> string)
sourceraw docstring

sha384*clj

(sha384* x)

[Hash] SHA-384 (raw value)

[Hash] SHA-384 (raw value)
sourceraw docstring

sha384-bytesclj

(sha384-bytes x)

[Hash] SHA-384 (value -> byte array)

[Hash] SHA-384 (value -> byte array)
sourceraw docstring

sha384-fileclj

(sha384-file x)

[Hash] SHA-384 (file path -> string)

[Hash] SHA-384 (file path -> string)
sourceraw docstring

sha384-file*clj

(sha384-file* x)

[Hash] SHA-384 (raw value)

[Hash] SHA-384 (raw value)
sourceraw docstring

sha384-file-bytesclj

(sha384-file-bytes x)

[Hash] SHA-384 (file path -> byte array)

[Hash] SHA-384 (file path -> byte array)
sourceraw docstring

sha384-hmacclj

(sha384-hmac x secret)

[HMAC] HmacSHA384 (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.

[HMAC] HmacSHA384 (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`.
sourceraw docstring

sha384-hmac*clj

(sha384-hmac* x secret)

[HMAC] HmacSHA384 (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.

[HMAC] HmacSHA384 (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`.
sourceraw docstring

sha384-hmac-bytesclj

(sha384-hmac-bytes x secret)

[HMAC] HmacSHA384 (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.

[HMAC] HmacSHA384 (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`.
sourceraw docstring

sha384-hmac-fileclj

(sha384-hmac-file x secret)

[HMAC] HmacSHA384 (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.

[HMAC] HmacSHA384 (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`.
sourceraw docstring

sha384-hmac-file*clj

(sha384-hmac-file* x secret)

[HMAC] HmacSHA384 (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.

[HMAC] HmacSHA384 (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`.
sourceraw docstring

sha384-hmac-file-bytesclj

(sha384-hmac-file-bytes x secret)

[HMAC] HmacSHA384 (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.

[HMAC] HmacSHA384 (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`.
sourceraw docstring

sha384-rsaclj

(sha384-rsa x private-key)

[Signature] SHA384withRSA (value -> string)

Sign the given message using the given java.security.PrivateKey.

[Signature] SHA384withRSA (value -> string)

Sign the given message using the given java.security.PrivateKey.
sourceraw docstring

sha384-rsa*clj

(sha384-rsa* x private-key)

[Signature] SHA384withRSA (raw value)

Sign the given message using the given java.security.PrivateKey.

[Signature] SHA384withRSA (raw value)

Sign the given message using the given java.security.PrivateKey.
sourceraw docstring

sha384-rsa-bytesclj

(sha384-rsa-bytes x private-key)

[Signature] SHA384withRSA (value -> byte array)

Sign the given message using the given java.security.PrivateKey.

[Signature] SHA384withRSA (value -> byte array)

Sign the given message using the given java.security.PrivateKey.
sourceraw docstring

sha384-rsa-fileclj

(sha384-rsa-file x private-key)

[Signature] SHA384withRSA (file path -> string)

Sign the given message using the given java.security.PrivateKey.

[Signature] SHA384withRSA (file path -> string)

Sign the given message using the given java.security.PrivateKey.
sourceraw docstring

sha384-rsa-file*clj

(sha384-rsa-file* x private-key)

[Signature] SHA384withRSA (raw value)

Sign the given message using the given java.security.PrivateKey.

[Signature] SHA384withRSA (raw value)

Sign the given message using the given java.security.PrivateKey.
sourceraw docstring

sha384-rsa-file-bytesclj

(sha384-rsa-file-bytes x private-key)

[Signature] SHA384withRSA (file path -> byte array)

Sign the given message using the given java.security.PrivateKey.

[Signature] SHA384withRSA (file path -> byte array)

Sign the given message using the given java.security.PrivateKey.
sourceraw docstring

sha384-rsa-verifyclj

(sha384-rsa-verify x signature public-key)

[Signature] SHA384withRSA

Verify the given message signature using the given public key (anything implementing pandect.utils.convert/PublicKeyConvertable)

The signature can be given as a byte array, hex (!) string, java.io.File, java.io.InputStream or anything implementing pandect.utils.convert/ByteConvertable.

[Signature] SHA384withRSA

Verify the given message signature using the given public key (anything implementing `pandect.utils.convert/PublicKeyConvertable`)

The signature can be given as a byte array, hex (!) string, java.io.File,
java.io.InputStream or anything implementing `pandect.utils.convert/ByteConvertable`.
sourceraw docstring

sha384-rsa-verify-fileclj

(sha384-rsa-verify-file x signature public-key)

[Signature] SHA384withRSA

Verify the given message signature using the given public key (anything implementing pandect.utils.convert/PublicKeyConvertable)

The signature can be given as a byte array, hex (!) string, java.io.File, java.io.InputStream or anything implementing pandect.utils.convert/ByteConvertable.

[Signature] SHA384withRSA

Verify the given message signature using the given public key (anything implementing `pandect.utils.convert/PublicKeyConvertable`)

The signature can be given as a byte array, hex (!) string, java.io.File,
java.io.InputStream or anything implementing `pandect.utils.convert/ByteConvertable`.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close