mirror of
https://github.com/OpenSystemsLab/base32.nim
synced 2026-01-14 15:21:47 +00:00
No description
| .github | ||
| tests | ||
| .gitignore | ||
| base32.nim | ||
| base32.nimble | ||
| LICENSE | ||
| README.md | ||
base32.nim
This module implements a base32 encoder and decoder.
Installation
$ nimble install base32
Changes
0.1.1 - minor tweaks
0.1.0 - initial release
Usage
import base32
let e = encode("Hello")
assert decode(e) == "JBSWY3DP"