如何解密文本

发布于 2024-12-07 03:44:43 字数 455 浏览 1 评论 0原文

感谢您之前的回复,

我正在为我的登录身份验证进行加密和解密。我用

define('VECTOR', 'EXfPCW23'); //example, not the actual used VECTOR / KEY
$key = 'lolwatlolwat';
$filter = new Zend_Filter_Encrypt();
$filter->setEncryption(array('key' => $key));
$filter->setVector(VECTOR);
return $filter->filter($password);

这个编码来加密数据。每当我尝试解密数据时,这些值永远不会被解密。在上面的编码中,我更改了 $filter=new Zend_Filter_Decrypt(); 进行解密。请指导我解密加密值。我对这个话题很陌生。

Thanks for previous replies

I am doing encryption and decryption for my log in authentication. i used

define('VECTOR', 'EXfPCW23'); //example, not the actual used VECTOR / KEY
$key = 'lolwatlolwat';
$filter = new Zend_Filter_Encrypt();
$filter->setEncryption(array('key' => $key));
$filter->setVector(VECTOR);
return $filter->filter($password);

this codings to encrypt the data. whenever i tried to decrypt the data, the values never be decrypted. in the above coding i changed $filter=new Zend_Filter_Decrypt(); for the decryption. pls guide me to decrypt the encrypted value. i am new to this topic.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

方觉久 2024-12-14 03:44:43

您可以尝试这个

$filter = new Zend_Filter_Decrypt('myencryptionkey');

// Set the vector with which the content was encrypted
$filter->setVector('myvector');

$decrypted = $filter->filter($encrypted);
print $decrypted;

请参考

http:// www.thomasweidner.com/flatpress/2009/01/14/how-to-encrypt-with-zf/

You can try this

$filter = new Zend_Filter_Decrypt('myencryptionkey');

// Set the vector with which the content was encrypted
$filter->setVector('myvector');

$decrypted = $filter->filter($encrypted);
print $decrypted;

Please refer

http://www.thomasweidner.com/flatpress/2009/01/14/how-to-encrypt-with-zf/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文