Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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绑定

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)