https://github.com/synodriver/lua-base16384
lua bindings for base16384
https://github.com/synodriver/lua-base16384
base16384 lua
Last synced: about 1 month ago
JSON representation
lua bindings for base16384
- Host: GitHub
- URL: https://github.com/synodriver/lua-base16384
- Owner: synodriver
- Created: 2022-04-15T07:53:20.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-11-09T07:08:27.000Z (over 1 year ago)
- Last Synced: 2025-04-07T23:14:25.633Z (about 1 year ago)
- Topics: base16384, lua
- Language: C
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
✨ lua-base16384 ✨
The lua binding for base16384
### 使用
```lua
local bs = require("base16384")
local encoded = bs.encode("xxxxx")
print(encoded)
print(bs.decode(encoded))
print(bs.encode_len(12))
print(bs.decode_len(12))
```