如何使用 BIO_SSL 加密数据?

发布于 2024-09-11 06:49:50 字数 59 浏览 2 评论 0 原文

我正在使用 bio.h 中的 BIO_SSL 来创建 SSL。 但如何使用 BIO_SSL 加密数据呢?

I am using BIO_SSL which is in bio.h to create SSL.
but how to encrypt data using BIO_SSL?

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

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

发布评论

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

评论(1

温暖的光 2024-09-18 06:49:50

恐怕你的问题类似于“我有一颗钉子。我如何建造一座房子?”。不过,也许此页面上的示例将帮助您开始使用 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.

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