No description
Find a file
2021-10-01 08:03:58 +07:00
.github Create FUNDING.yml 2021-10-01 08:03:58 +07:00
tests Fix encoding of zero-byte buffers 2019-06-15 16:05:09 +02:00
.gitignore Nimble compliance 2019-06-15 14:53:33 +02:00
base32.nim Fix encoding of zero-byte buffers 2019-06-15 16:05:09 +02:00
base32.nimble Update base32.nimble 2019-06-15 22:52:13 +07:00
LICENSE Initial commit 2015-05-28 01:02:17 +07:00
README.md Added Nim highlighting 2015-06-10 13:25:45 -04:00

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"