Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/themostblack/lua-crc32c
基于Google CRC32C库的Lua绑定
https://github.com/themostblack/lua-crc32c
Last synced: 2 days ago
JSON representation
基于Google CRC32C库的Lua绑定
- Host: GitHub
- URL: https://github.com/themostblack/lua-crc32c
- Owner: TheMostBlack
- License: mit
- Created: 2024-11-17T03:56:06.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-17T04:02:34.000Z (2 months ago)
- Last Synced: 2024-11-17T05:17:18.653Z (2 months ago)
- Language: C++
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LuaCRC32C
基于[Google CRC32C](https://github.com/google/crc32c)库的Lua绑定### Lua 示例代码
```lua
local crc32c = require("lcrc32c")
local data = "Hello, World!"
local crc = crc32c.calc(data)
print("CRC32C:", crc)