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 中的 encrypt() 函数加密的数据库中是否安全?如果是,那么我该如何解密它,如果不是,那么有什么更好的主意?示例:crypt() 函数
您将获得的最好的结果是使用Rijndael加密。你正在做的是不可逆的散列。
在 PHP 中检查 AES 加密:
PHP 中的 AES-256 加密
一个不错的选择是 PGP
您可以通过单击此处找到有关此的更多信息