如何使用 BIO_SSL 加密数据?
我正在使用 bio.h 中的 BIO_SSL 来创建 SSL。 但如何使用 BIO_SSL 加密数据呢?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我正在使用 bio.h 中的 BIO_SSL 来创建 SSL。 但如何使用 BIO_SSL 加密数据呢?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
恐怕你的问题类似于“我有一颗钉子。我如何建造一座房子?”。不过,也许此页面上的示例将帮助您开始使用 openssl。另外,这本书对于理解openssl非常好。
编辑:
如果您希望加密数据而不是 SSL,并且想要使用 BIO,那么请考虑
BIO_f_cipher()
生物。我个人认为 EVP 界面比 BIO 界面更容易理解。I'm afraid your question is akin to "I have a nail. How do I build a house?". However, perhaps the example on this page will get you started with openssl. Also, this book is pretty good for understanding openssl.
EDIT:
If you are looking to encrypt data rather than do SSL, and you want to use BIO's, then consider the
BIO_f_cipher()
bio. I personally find the EVP interface to be easier to understand than the BIO interface.