PHP 中的 PGP 加密 (Windows)

发布于 2024-11-15 09:10:08 字数 335 浏览 2 评论 0原文

我遇到了 GPG 加密问题。你能帮我吗?

它不会加密我想要加密的消息。

代码:

$pgppath = "C:/Program Files (x86)/GNU/GnuPG";
putenv("PGPPATH=$pgppath");
$cmd = "echo '$msg' | '$pgppath'/gpg2.exe -e";
exec($cmd, $encrypted, $errorCode);
echo implode("\n", $encrypted);
mail($to, $subject, $encrypted[0]);

谢谢!我很感激你的帮助!

I'm having a problem with GPG encrpytion. Can you please help me with it?

It does not encrpyt the message that I want to encrpyt.

Code:

$pgppath = "C:/Program Files (x86)/GNU/GnuPG";
putenv("PGPPATH=$pgppath");
$cmd = "echo '$msg' | '$pgppath'/gpg2.exe -e";
exec($cmd, $encrypted, $errorCode);
echo implode("\n", $encrypted);
mail($to, $subject, $encrypted[0]);

Thanks! I appreciate the help!

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

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

发布评论

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

评论(1

七月上 2024-11-22 09:10:08

问题可能出在 '$pgppath'/gpg2.exe 中,它将被解析为 'C:/Program Files (x86)/GNU/GnuPG'/gpg2.exe -e

Problem may be in '$pgppath'/gpg2.exe, it will be resolved to 'C:/Program Files (x86)/GNU/GnuPG'/gpg2.exe -e

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