RoR - MD5 生成
如何在 Rails 3.0 中使用 MD5 加密字符串? 模型中的 pass = MD5.hexdigest(pass) 会产生未初始化的常量 MyModel::MD5
How can I encrypt a string with MD5 in Rails 3.0 ?pass = MD5.hexdigest(pass)
in a model yields uninitialized constant MyModel::MD5
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Ruby 标准库中的
Digest::MD5
来实现此目的。还有一件事:MD5 是一种哈希算法。您不会使用哈希算法“加密”任何内容。
You can use
Digest::MD5
from the Ruby standard library for this.And one more thing: MD5 is a hash algorithm. You don't "encrypt" anything with a hash algorithm.