An open API service indexing awesome lists of open source software.

https://github.com/davidegalilei/base45

A simple to use Nim library to encode/decode using base45 encoding
https://github.com/davidegalilei/base45

base45 encoding library nim

Last synced: 3 months ago
JSON representation

A simple to use Nim library to encode/decode using base45 encoding

Awesome Lists containing this project

README

          

# Base45

### With this library you can encode/decode strings using Base45 encoding

## Installation
```bash
$ nimble install https://github.com/DavideGalilei/base45
```

## Usage
```nim
import base45

let encoded = b45encode("Hello World")
let decoded = b45decode(encoded)
echo decoded # Hello World
```

## Run tests
```bash
$ nimble test
```

## Credits
This library is inspired from https://github.com/kirei/python-base45

## License
This project is under MIT license.