Liking cljdoc? Tell your friends :D

alphabase.base32

Base32 implementation from RFC 4648, including the extended hexadecimal alphabet.

Base32 implementation from RFC 4648, including the extended hexadecimal
alphabet.
raw docstring

decodeclj/s

(decode string)
(decode string hex?)

Decode a byte array from a base32 string. Handles both upper and lower case characters, as well as trailing padding = characters. Returns nil for nil or blank strings.

If hex? is true, this uses the extended hex alphabet instead of the RFC 4648 alphabet.

Decode a byte array from a base32 string. Handles both upper and lower case
characters, as well as trailing padding `=` characters. Returns nil for nil
or blank strings.

If `hex?` is true, this uses the extended hex alphabet instead of the RFC
4648 alphabet.
sourceraw docstring

encodeclj/s

(encode data)
(encode data hex?)
(encode data hex? pad?)

Encode a byte array into a base32 string. Returns nil for nil or empty data.

If hex? is true, this uses the extended hex alphabet instead of the RFC 4648 alphabet. If pad? is true, the result will be extended with = characters to be an even multiple of eight digits in length.

Encode a byte array into a base32 string. Returns nil for nil or empty data.

 If `hex?` is true, this uses the extended hex alphabet instead of the RFC
 4648 alphabet. If `pad?` is true, the result will be extended with `=`
characters to be an even multiple of eight digits in length.
sourceraw docstring

hex-alphabetclj/s

source

rfc-alphabetclj/s

source

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

× close