PHP Captcha:什么是“私钥”?和“公钥”?
私钥和公钥有什么区别以及如何使用?
What is the difference between private key and public key and how is it used?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
私钥和公钥有什么区别以及如何使用?
What is the difference between private key and public key and how is it used?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
公钥加密
您创建一个密钥对(公钥和私钥),接收者公钥用于加密消息。接收者的私钥用于解密该消息。
Public-key cryptography
You create a key-pair (public and private) the receivers public key is used to encrypt messages. The private key of the receiver is used to decrypt the this message.
通常,私钥和公钥是属于非对称加密算法的术语。在这种特殊情况下,我没有看到与 CAPTCHA 或 PHP5 的连接。
Normally private and public key are terms that belong to assymetric encryption algorithms. I don't see a connection to CAPTCHA or PHP5 in this special case.