Pergunta

How to implement dtls protocol using twisted with m2crypto (or pyopenssl)?

Foi útil?

Solução

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.

Outras dicas

gnutls in version 3.2 now supports DTLS, for some cffi wrappers you might want to look at https://github.com/apexo/pgdtls

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top