baynes
baynes
Dolus is not adding X-Forwarded-For to CONNECT requests. It is being added to the requests made after the SSL tunnel has been established by CONNECT but that is too late...
RFC-4514 defines the standard string representation for distinguished names. The `asn1crypto.x509.Name` object should support a way of generating this representation. The `human_friendly` property does something similar but uses different strings...
It would be useful for asn1crypto.x509.Name.build()` to have an option to turn off the sorting the relative names into its preferred order and keep the input order. Some specifications require...
There should be a writer property for `key_identifier` as not everyone uses the RFC5280 sha1 method and it is required to be able to set ones own value. See also...
According to Pypi the last release of this is 0.14.2 made in 2016. Yet there are useful changes such as fc7f4c2031b74c441ecdc8cbe432063c97f4e292 made in 2017 which added support for dates >=2050...
It would be nice to have a way of setting the subject alternative name to an other_name without having to access an internal method directly. Currently have to call `_set_subject_alt`....
The `.hash_algo` attribute only accepts a very limited number of hash algorithm names. It should accept a wider range - possibly anything the underlying crypto will support. In particular sha384...
The `.hash_algo` attribute only accepts a very limited number of hash algorithm names. It should accept a wider range - possibly anything the underlying crypto will support. In particular sha384...
The following test script: ``` perl #!/usr/bin/perl use strict; use warnings; use Test::Spec; it "T1" => sub { warn "Test1\n"; pass(); }; describe "T2" => sub { it "2.1" =>...
If you look at http://pulsar.apache.org/docs/en/functions-develop/#serde under the Python tab it says "In Python, the default SerDe is identity, meaning that the type is serialized as whatever type the producer function...