mirror of
https://github.com/achesak/nim-hashids
synced 2026-01-02 15:14:49 +00:00
No description
|
|
||
|---|---|---|
| test | ||
| hashids.nim | ||
| hashids.nimble | ||
| LICENSE.md | ||
| README.md | ||
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.