Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 php 作为基本应用程序登录系统,能够编辑帐户信息和删除帐户。我有一个mysql数据库。我需要使用盐加密/解密密码。我该怎么做?只需要确保数据是安全的。
您不想加密密码。你想对它们进行哈希处理。
一些阅读: http: //php.net/manual/en/faq.passwords.php
相关的 SO 帖子:如何散列密码并取回密码
密码应该是散列的,与加密相反,这是一种单向函数,它应该使得不可能取回原始密码。
建议使用像phpass这样完善的库来构建哈希。如需进一步阅读,请查看本教程。