Jörn Heissler
Jörn Heissler
Hello! Could you please provide a code snippet that generates such a `CertStatus` with fractions?
Quote from X.690 (§11.7.3): > The fractional-seconds elements, if present, shall omit all trailing zeros; if the elements correspond to 0, they shall be wholly omitted, and the decimal point...
There are several options here: * Do nothing. As you pointed out, this may result in incorrect encodings. * When encoding certain types (e.g. `CertStatus`), silently remove fractions. * Print...
Hello, it still should possible to parse those with asn1crypto. But with less comfort, I agree: ```python from asn1crypto.crl import CertificateList crl = CertificateList.load(bytes.fromhex('30783062020101300b06092a864886f70d01010b300e310c300a06035504030c0358595a170d3139313131333133353731345a170d3139313131333133353731345a3022302002017b170d3139313131333133353731345a300c300a0603551d1504030a0112300b06092a864886f70d01010b03050054657374')) print(int(crl['tbs_cert_list']['revoked_certificates'][0]['crl_entry_extensions'][0]['extn_value'].parsed)) ==> 18 ``` In particular,...
In my opinion, there's no reason not to include CAdES etc. in asn1crypto. But I'm not familiar with those standards (although I live in the EU) and couldn't find the...
Congrats, @wbond! And btw, thanks for adding me as collaborator. I wish I'd find more time, too. E.g. I still didn't complete #86, maybe I should split it up a...
> all test fail https://github.com/wbond/badtls.io/issues/6
I've got some code that I'd like to be async. Would be great if pyusb could be used with different event loops (asyncio, trio, curio, anyio, maybe more). Code currently...
Looks like libusb got the required functions: * http://libusb.sourceforge.net/api-1.0/group__libusb__asyncio.html * http://libusb.sourceforge.net/api-1.0/group__libusb__poll.html There appears to be another python package which already includes the required bindings: https://github.com/karpierz/libusb But it doesn't provide any...
> Where should DHE be added? New line, "Key exchange algorithms"?