https://github.com/synodriver/lua-clhash
https://github.com/synodriver/lua-clhash
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/synodriver/lua-clhash
- Owner: synodriver
- Created: 2022-07-27T01:56:24.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-27T03:00:18.000Z (almost 4 years ago)
- Last Synced: 2025-02-14T00:34:27.235Z (over 1 year ago)
- Language: C
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
# lua-clhash
```lua
local clhash = require("clhash")
local key = clhash.get_random_key(1,2)
print(clhash.hash(key,"asjakda"))
print(clhash.hash(key,"asjakda"))
print(clhash.hash(key,"asjakd"))
print(clhash.hash(key,"asjakddad"))
print(clhash.hash(key,"asjakddad"))
clhash.free_key(key)
```