扭曲的 DTLS 连接
如何使用twisted和m2crypto(或pyopenssl)实现dtls协议?
How to implement dtls protocol using twisted with m2crypto (or pyopenssl)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用twisted和m2crypto(或pyopenssl)实现dtls协议?
How to implement dtls protocol using twisted with m2crypto (or pyopenssl)?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
pyOpenSSL 和 M2Crypto 都没有公开 OpenSSL 的 DTLS 功能(据我所知)。因此,第一步是扩展其中一个库来支持它。之后,您可以扩展 Twisted 以使用刚刚添加到底层 SSL 库的新功能。
Neither pyOpenSSL nor M2Crypto exposes OpenSSL's DTLS features (as far as I know). So, the first step would be to extend one of these libraries to support it. After that, you could extend Twisted to use the new features you just added to the underlying SSL library.
3.2 版中的 gnutls 现在支持 DTLS,对于某些 cffi 包装器,您可能需要查看 https://github.com/apexo /pgdtls
gnutls in version 3.2 now supports DTLS, for some cffi wrappers you might want to look at https://github.com/apexo/pgdtls