浏览 2010 次
锁定老帖子 主题:rails中的SecureRandom
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2009-11-01
最后修改:2009-12-10
youtube之类的视频网站的11位随机id是如何生成的?类似于:http://www.youtube.com/watch?v=fY4Epc2XSGc 中的fY4Epc2XSGc 很多人都是自己实现安全随机数,类似以下的代码: require 'digest/sha1' def generate_temporary_password self.password = Digest::SHA1.hexdigest(Time.now.to_s.split(//).sort_by{rand}.join) end
其实,rails已经为你做好了这一切。 你可以像这样去使用它: require 'active_support/secure_random' ActiveSupport::SecureRandom.hex(10) => "8a2cf0a838e64f6f85d1" ActiveSupport::SecureRandom.base64(10) => "fUL81hGd77YyGg=="
声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |