有没有关于使用 OpenSSL 的 cryptolib 实现网络数据加密的书籍?
就像标题中一样,我想加密通过网络发送的数据。因为我 决定使用TCP和/或SCTP 协议 我无法使用 SSL/TLS。这就是为什么我想要 基于SSL思想实现我自己的解决方案。两个对等点将对称交换 首先使用非对称算法 (RSA) 计算算法的密钥 (AES),然后继续 使用对称算法对通信数据进行加密。
我使用 C++ 为 Linux 开发应用程序。问题是我对数据不熟悉 加密,我在大学里只听过一些关于网络的非常一般的讲座 安全……明年我会详细介绍这一点。
到目前为止我发现,OpenSSL 提供了子库 libcrypto,它具有 我需要的一切:)但是手册页并没有太大帮助, 特别是对于像我这样的新用户...
你能给我推荐任何关于 OpenSSL 和密码学的书籍或网络资源吗 对于程序员?
Like in the title, I want to encrypt data, which is sent over network. Because I
decided to use TCP and/or SCTP protocols I cannot use SSL/TLS. That's why I want
to implement my own solution based on the SSL idea. Two peers will exchange symmetric
algorithm's key (AES) using an asymmetric algorithm (RSA) first and then continue
communication encrypting data using the symmetric algorithm.
I develop my application in C++ for Linux. The problem is that I'm new to data
encryption, I had only few very general lectures at university about network
security... I'll have more about this next year.
So far I figured out, that OpenSSL provides the sub-library libcrypto, which has
everything I need :) But the manual pages aren't too helpful,
especially for new users like me...
Can you recommend me any book or network resources about OpenSSL and cryptography
for programmers?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
OpenSSL 的网络安全
OpenSSL:开源、传输层安全、C(编程语言)、加密、类 Unix、Solaris(操作系统)、Linux、Mac OS X、RSA 安全
已应用密码学:C 语言的协议、算法和源代码
相关内容< /p>
推荐第一个(O'Reilly)。
Network security with OpenSSL
OpenSSL: Open Source, Transport Layer Security, C (Programming Language), Cryptography, Unix-Like, Solaris (Operating System), Linux, Mac OS X, RSA Security
Applied Cryptography: Protocols, Algorithms, and Source Code in C
Related stuff
Recommending the first one (O'Reilly).
因为我决定使用 TCP 和/或 SCTP 协议,所以我无法使用 SSL/TLS。
这是不合逻辑的。没有什么可以阻止您在 TCP 或 SCTP 上使用 TLS (SSL) - 事实上 TLS 几乎总是在 TCP 上运行。
Because I decided to use TCP and/or SCTP protocols I cannot use SSL/TLS.
This is a non-sequiter. There is nothing stopping you from using TLS (SSL) over TCP or SCTP - in fact TLS is almost always running over TCP.