hashids

Nim implementation of Hashids

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:23

Installation

nimble install hashids
choosenim install hashids
git clone https://github.com/achesak/nim-hashids

OS Compatibility

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

Source

Repository https://github.com/achesak/nim-hashids
Homepage https://github.com/achesak/nim-hashids
Registry Source nimble_official

README

About

nim-hashids is a Nim implementation of Hashids (http://hashids.org).

Basic example:

let hashids: Hashids = createHashids("this is my salt")
let id: string = hashids.encode(@[1, 2, 3])
let numbers: seq[int] = hashids.decode(id)

License

nim-hashids is released under the MIT open source license.