如何在 Ruby on rails 中计算 32 位 CRC?

How to calculate 32 bit CRC in Ruby on rails?

我想在 Ruby on rails 中计算"输入字段值"的 32 位 CRC 值。
需要示例代码,请任何人帮助我。


你可以使用 Ruby 的 Zlib 模块。

1
2
require 'zlib'
crc32 = Zlib::crc32('input field value')