base32

Base32 library for Nim

Abandoned Pure Nim score 15/100 · tests present · no docs generated

Summary

Latest Version Unknown
License MIT
CI Status Failing
Downloads 0
Last Indexed 2026-07-21 05:24

Installation

nimble install base32
choosenim install base32
git clone https://github.com/OpenSystemsLab/base32.nim

OS Compatibility

Platform Linux macOS Windows FreeBSD OpenBSD NetBSD Android iOS WASM Embedded
base32 - - - - - - -

Source

Repository https://github.com/OpenSystemsLab/base32.nim
Homepage https://github.com/OpenSystemsLab/base32.nim
Registry Source nimble_official

README

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"