Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Artifact ID: | 26ad777a635e2b5414d9500d241a7f6296e37a31 |
|---|---|
| Page Name: | (data base32) |
| Date: | 2016-07-15 11:07:02 |
| Original User: | murphy |
Content
Base32 Encoding
Synopsis
(import (data base32))
Encoding and decoding of binary data in Base32 format.
Operations
procedure: (base32-encode bytevector)
procedure: (base32-encode bytevector padding?)
Encodes the given bytevector into a string. Without options, the result has no padding. If the padding option is given and true, the output may be terminated by "=" characters unless the input length is a multiple of eight.
procedure: (base32-encode string)
Decodes the given string into a bytevector. Ignores any number of padding characters at the end of the input.