RosettaCodeData/Task/CRC-32/Pluto/crc-32.pluto
2025-08-11 18:05:26 -07:00

5 lines
151 B
Text

local crypto = require "crypto"
local fmt = require "fmt"
local str = "The quick brown fox jumps over the lazy dog"
print(fmt.hex(crypto.crc32(str)))