Why is context.set_tmp_ecdh() not defined in pyOpenSSL?

前端 未结 1 1292
囚心锁ツ
囚心锁ツ 2021-01-28 14:17

I\'m trying to implement the answer found at Python Paste SSL server with TLSv1.2 and Forward Secrecy.

How do I use context.set_tmp_ecdh()? That method is not defined on

相关标签:
1条回答
  • 2021-01-28 15:00

    Support for ecdh was added in pyOpenSSL 0.15, so you can't use it with your installed version of pyOpenSSL.

    You'll have to install a newer version.

    0 讨论(0)
提交回复
热议问题