No description
Find a file
Adam Chesak e83754f45d
Merge pull request #4 from moigagoo/patch-1
Bump version to 1.2
2018-10-06 20:23:09 -04:00
test Rewrite; works with new version of nim 2018-08-20 23:53:48 -04:00
hashids.nim Update for Nim 0.19 (remove isNil for seq). 2018-10-05 12:09:30 +04:00
hashids.nimble Bump version to 1.2 2018-10-06 23:01:38 +04:00
LICENSE.md Update readme and license 2018-08-20 23:56:23 -04:00
README.md Update README.md 2018-08-21 23:51:45 -04:00

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.