[issue37952] Add support for export_keying_material to SSL library

2022-03-19 Thread Christer Weinigel
Christer Weinigel added the comment: Sorry about the venting, but it is kind of frustrating to spend months working on something with no feedback just to be told that it all was for nothing. But that's how it is. I'll just keep updating my path every now and then since I need it

[issue37952] Add support for export_keying_material to SSL library

2022-03-19 Thread Christer Weinigel
Christer Weinigel added the comment: Hi, unfortunately the maintainer of the openssl library in Python doesn't want to take my patch. He says that he doesn't want the burden of supporting more functions in the API. I'm a bit frustrated about the whole situation, I've redo

[issue43669] PEP 644: Require OpenSSL 1.1.1 or newer

2021-04-22 Thread Christer Weinigel
Change by Christer Weinigel : -- nosy: +wingel71 nosy_count: 1.0 -> 2.0 pull_requests: +24240 pull_request: https://github.com/python/cpython/pull/25255 ___ Python tracker <https://bugs.python.org/issu

[issue42333] Port ssl module to heap types and module state (PEP 573)

2021-04-22 Thread Christer Weinigel
Change by Christer Weinigel : -- nosy: +wingel71 nosy_count: 3.0 -> 4.0 pull_requests: +24239 pull_request: https://github.com/python/cpython/pull/25255 ___ Python tracker <https://bugs.python.org/issu

[issue37952] Add support for export_keying_material to SSL library

2021-04-07 Thread Christer Weinigel
Change by Christer Weinigel : -- keywords: +patch pull_requests: +23991 stage: -> patch review pull_request: https://github.com/python/cpython/pull/25255 ___ Python tracker <https://bugs.python.org/issu

[issue37952] Add support for export_keying_material to SSL library

2021-04-07 Thread Christer Weinigel
Christer Weinigel added the comment: OpenSSL has a function to "SSL_export_keying_material" as described in RFC5705. This functionality is needed to be able to support a bunch of other protocols such as "Network Time Security for the Network Time Protocol" which has now

[issue43765] Add support for the RFC5705 SSL_export_keying_material function

2021-04-07 Thread Christer Weinigel
Change by Christer Weinigel : -- resolution: -> duplicate stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue43765] Add support for the RFC5705 SSL_export_keying_material function

2021-04-07 Thread Christer Weinigel
New submission from Christer Weinigel : OpenSSL has a function to "SSL_export_keying_material" as described in RFC5705. This function is needed to be able to support a bunch of other protocols such as "Network Time Security for the Network Time Protocol" defined in RFC89

[issue37952] Add support for export_keying_material to SSL library

2019-08-26 Thread Christer Weinigel
Christer Weinigel added the comment: I'm doing an implementation of the NTS protocol for my customer Netnod: https://github.com/Netnod/nts-poc-python NTS is draft RFC on its way to become a standard: https://datatracker.ietf.org/doc/draft-ietf-ntp-using-nts-for-ntp/ NTS require

[issue37952] Add support for export_keying_material to SSL library

2019-08-26 Thread Christer Weinigel
New submission from Christer Weinigel : Add support for the export_keying_material function to the SSL library. Tested with Python 3.7.4 and Python master branch: https://github.com/wingel/cpython/tree/export_keying_material-3.7.4 https://github.com/wingel/cpython/tree/export_keying_material