UDP数据包加密
如果使用 ssl 模块进行 TCP 通信,这似乎相当简单,但是如何通过 UDP 完成加密通信呢?
ssl模块还能用吗?如果是这样,客户端和服务器需要执行哪些步骤才能正常来回发送数据?
This appears to be reasonably trivial if using the ssl module for TCP communication, but how would encrypted communication be done via UDP?
Can the ssl module still be used? if so, what steps would need to be performed for the client and server to be in a position where data can be sent to-and-fro as normal?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
DTLS 是 TLS(又名 SSL)衍生品,设计用于数据报传输(例如 UDP)。
OpenSSL 从 0.9.8 开始支持 DTLS,使用
DTLSv1_METHOD
而不是SSLv23_METHOD
或TLSv1_METHOD
或类似的。DTLS is a TLS (aka SSL) derivative designed for use over datagram transports, like UDP.
OpenSSL supports DTLS starting in 0.9.8, using
DTLSv1_METHOD
instead ofSSLv23_METHOD
orTLSv1_METHOD
or similar.您可以使用 pyCrypto 或 ezPyCrypto 手动加密/解密数据包。
You could use pyCrypto or ezPyCrypto to manually encrypt/decrypt the packets.