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: 12 months ago
JSON representation
A simple to use Nim library to encode/decode using base45 encoding
- Host: GitHub
- URL: https://github.com/davidegalilei/base45
- Owner: DavideGalilei
- License: mit
- Created: 2021-11-01T12:32:48.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-11-01T12:38:27.000Z (over 4 years ago)
- Last Synced: 2025-03-04T12:47:22.807Z (over 1 year ago)
- Topics: base45, encoding, library, nim
- Language: Nim
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.