Liking cljdoc? Tell your friends :D

pandect.algo.sha512

SHA-512 algorithm implementation

SHA-512 algorithm implementation
raw docstring

sha512clj

(sha512 x)

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

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

sha512*clj

(sha512* x)

[Hash] SHA-512 (raw value)

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

sha512-bytesclj

(sha512-bytes x)

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

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

sha512-fileclj

(sha512-file x)

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

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

sha512-file*clj

(sha512-file* x)

[Hash] SHA-512 (raw value)

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

sha512-file-bytesclj

(sha512-file-bytes x)

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

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

sha512-hmacclj

(sha512-hmac x secret)

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

sha512-hmac*clj

(sha512-hmac* x secret)

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

sha512-hmac-bytesclj

(sha512-hmac-bytes x secret)

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

sha512-hmac-fileclj

(sha512-hmac-file x secret)

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

sha512-hmac-file*clj

(sha512-hmac-file* x secret)

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

sha512-hmac-file-bytesclj

(sha512-hmac-file-bytes x secret)

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

sha512-rsaclj

(sha512-rsa x private-key)

[Signature] SHA512withRSA (value -> string)

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

[Signature] SHA512withRSA (value -> string)

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

sha512-rsa*clj

(sha512-rsa* x private-key)

[Signature] SHA512withRSA (raw value)

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

[Signature] SHA512withRSA (raw value)

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

sha512-rsa-bytesclj

(sha512-rsa-bytes x private-key)

[Signature] SHA512withRSA (value -> byte array)

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

[Signature] SHA512withRSA (value -> byte array)

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

sha512-rsa-fileclj

(sha512-rsa-file x private-key)

[Signature] SHA512withRSA (file path -> string)

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

[Signature] SHA512withRSA (file path -> string)

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

sha512-rsa-file*clj

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

[Signature] SHA512withRSA (raw value)

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

[Signature] SHA512withRSA (raw value)

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

sha512-rsa-file-bytesclj

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

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

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

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

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

sha512-rsa-verifyclj

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

[Signature] SHA512withRSA

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] SHA512withRSA

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

sha512-rsa-verify-fileclj

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

[Signature] SHA512withRSA

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] SHA512withRSA

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