Liking cljdoc? Tell your friends :D

buddy.sign.compact

Compact high level message signing implementation.

It has high influence by django's cryptographic library and json web signature/encryption but with focus on have a compact representation. It's build on top of fantastic ptaoussanis/nippy serialization library.

This singing implementation is not very efficient with small messages, but is very space efficient with big messages.

The purpose of this implementation is for secure message transfer, it is not really good candidate for auth token because of not good space efficiency for small messages.

Compact high level message signing implementation.

It has high influence by django's cryptographic library
and json web signature/encryption but with focus on have
a compact representation. It's build on top of fantastic
ptaoussanis/nippy serialization library.

This singing implementation is not very efficient with
small messages, but is very space efficient with big
messages.

The purpose of this implementation is for secure message
transfer, it is not really good candidate for auth token
because of not good space efficiency for small messages.
raw docstring

*signers-map*clj

List of supported signing algorithms

List of supported signing algorithms
sourceraw docstring

decodeclj

(decode data
        key
        &
        [{:keys [alg compress max-age] :or {alg :hs256 compress true}}])

Given a signed message, verify it and return the decoded data.

Given a signed message, verify it and return
the decoded data.
sourceraw docstring

encodeclj

(encode data key & [{:keys [alg compress] :or {alg :hs256 compress true}}])

Sign arbitrary length string/byte array using compact sigining method.

Sign arbitrary length string/byte array using
compact sigining method.
sourceraw docstring

signclj

(sign data key & [{:keys [alg compress] :or {alg :hs256 compress true}}])

Sign arbitrary length string/byte array using compact sigining method.

Sign arbitrary length string/byte array using
compact sigining method.
sourceraw docstring

unsignclj

(unsign data
        key
        &
        [{:keys [alg compress max-age] :or {alg :hs256 compress true}}])

Given a signed message, verify it and return the decoded data.

Given a signed message, verify it and return
the decoded data.
sourceraw docstring

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

× close