(base64-input-stream src)
Make an input stream that base64-encodes the payload.
The src
is anything that gets transformed into the
InputStream
type using the io/input-stream
function.
Make an input stream that base64-encodes the payload. The `src` is anything that gets transformed into the `InputStream` type using the `io/input-stream` function.
(base64-output-stream dst)
Make in output stream that base64-decodes the payload.
The dst
is anything that gets transformed into the
OutputStream
type using the io/output-stream
function.
Make in output stream that base64-decodes the payload. The `dst` is anything that gets transformed into the `OutputStream` type using the `io/output-stream` function.
(decode-from-base64-bytes base64)
(decode-from-base64-bytes base64 options)
Decode a single value from a base64-encoded byte array.
Decode a single value from a base64-encoded byte array.
(decode-from-base64-string base64)
(decode-from-base64-string base64 options)
Decode a single value from a base64-encoded string.
Decode a single value from a base64-encoded string.
(decode-seq-from-base64-bytes base64)
(decode-seq-from-base64-bytes base64 options)
Decode a collection of values from a base64-encoded byte array.
Decode a collection of values from a base64-encoded byte array.
(decode-seq-from-base64-string base64)
(decode-seq-from-base64-string base64 options)
Decode a collection of values from a base64-encoded string.
Decode a collection of values from a base64-encoded string.
(encode-seq-to-base64-bytes xs)
(encode-seq-to-base64-bytes xs options)
Encode a collection of values into a base64-encoded byte array.
Encode a collection of values into a base64-encoded byte array.
(encode-seq-to-base64-string xs)
(encode-seq-to-base64-string xs options)
Encode a collection of values into a base64-encoded string.
Encode a collection of values into a base64-encoded string.
(encode-to-base64-bytes x)
(encode-to-base64-bytes x options)
Encode a single value into a base64-encoded byte array.
Encode a single value into a base64-encoded byte array.
(encode-to-base64-string x)
(encode-to-base64-string x options)
Encode a single value into a base64-encoded string.
Encode a single value into a base64-encoded string.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close