使用公钥加密数据
$key = file_get_contents('http://keyserver.pramberger.at/pks/lookup?op=get&search=uid');
在 '$key'
变量中获取公钥后,我需要使用此公钥加密数据。 键必须以 ----Begin pgp block ---to end pgp block---- 开头。 如何在 php 中完成此操作?
$key = file_get_contents('http://keyserver.pramberger.at/pks/lookup?op=get&search=uid');
after getting public key in '$key'
variable i need to encrypt the data using this public key.
the key must be start with ----Begin pgp block ---to end pgp block----.
How this can be done in php?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许这篇关于使用 PHP 和 GnuPG 进行加密和解密的文章(通过 Google 找到)对您有帮助。
还有一个 PHP 模块 与 GnuPG 交互。
嗯,GPG 与 PGP 兼容。
Maybe this article about Encryption and Decryption using PHP and GnuPG (found via Google) helps you.
And there is also a PHP module to interact with GnuPG.
Afaik, GPG is compatible with PGP.