如何使用密钥对 PHP 中的内容进行编码?
我看到 base64_encode
可以对值进行编码,但没有密钥。我需要一个函数,它接受盐和数据,对其进行编码,并且可以使用相同的盐进行解码(但是如果您尝试在不使用盐的情况下对其进行解码,则会出现乱码)。
有没有这样的 PHP 函数(找不到,只有 base64_encode
的修改版本)。
编辑:找到答案:使用 mcrypt 密码
I see base64_encode
can encode values, but without a key. I need a function that takes a salt and data, encodes it, and can be decoded with the same salt (but if you try to decode it without the salt, it gives you gibberish).
Is there a PHP function for this (can't find it, only modified versions of base64_encode
).
EDIT: Found the answer: use mcrypt ciphers
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看 http://www.php.net/manual/ 怎么样? en/book.mcrypt.php
What about taking a look at http://www.php.net/manual/en/book.mcrypt.php