便携式 PHP 密码哈希框架和 ActionScript 3 等效框架
出色地?是否可以? 存储在数据库中的密码使用便携式 PHP 密码哈希框架
(http://www.openwall.com/phpass/) 进行哈希处理。
如何以与 AS3 相同的方式对它们进行哈希处理?
如果这不可能,那么 as3crypto 库中最强的哈希算法是什么? 是hmac-sha256
吗?
谢谢。
Well? Is it possible?
Passwords stored in the database are hashed with The Portable PHP Password Hashing Framework
(http://www.openwall.com/phpass/).
How can I hash them in the same manner with AS3?
If that is not possible, what is the strongest hashing algorithm in the as3crypto
library?
Is it hmac-sha256
?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MD5 加上一些 salt 应该就足够好了,并且几乎所有平台都支持。
如果您不确定如何对哈希值加盐,您可以查看本教程:
http://www.pixel2life.com/publish/tutorials/118/understanding_md5_password_encryption/
MD5 with some salt should be good enough and is supported on almost any platform.
If you're not sure how to salt a hash, you could take a look at this tutorial:
http://www.pixel2life.com/publish/tutorials/118/understanding_md5_password_encryption/