diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2017-10-11 08:11:44 +0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2017-10-10 20:11:44 -0400 |
commit | ed32105be8daa27d39e5ef1f26e3f7bc672a7939 (patch) | |
tree | f47159bbb207cb68a963420e5500e8c8627d5cb3 /docs | |
parent | 003f56fbd7fe676f6b6bd0a52bbf83f040b4a168 (diff) | |
download | cryptography-ed32105be8daa27d39e5ef1f26e3f7bc672a7939.tar.gz cryptography-ed32105be8daa27d39e5ef1f26e3f7bc672a7939.tar.bz2 cryptography-ed32105be8daa27d39e5ef1f26e3f7bc672a7939.zip |
Backwards incompatible change to DNSName (#3951)
* Backwards incompatible change to DNSName
During this release cycle we decided to officially deprecate passing
U-labels to our GeneralName constructors. At first we tried changing
this in a purely backwards compatible way but get_values_for_type made
that untenable. This PR modifies DNSName to take three different types.
U-label strings (which raises a deprecation warning), A-label strings
(the new preferred type), and bytes (which are assumed to be decodable
to unicode strings). The latter, while supported, is primarily intended
for use by our parser and allows us to return the actual encoded data in
a certificate even if it has not been properly encoded to A-label before
the certificate is created. (Of course, if the certificate contains
invalid utf8 sequences this will still fail, but let's handle one
catastrophic failure at a time).
* coverage
* don't delete that asterisk from a test. it does things.
* no bytes in DNSName. Private constructor for bypassing validation
* test unicode in dnsname (yuck)
* fix docs
* empty commit, you disappoint me codecov
* CI is the worst
Diffstat (limited to 'docs')
-rw-r--r-- | docs/x509/reference.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/x509/reference.rst b/docs/x509/reference.rst index 951e6b7d..238a24e5 100644 --- a/docs/x509/reference.rst +++ b/docs/x509/reference.rst @@ -611,7 +611,7 @@ X.509 Certificate Builder >>> builder = builder.public_key(public_key) >>> builder = builder.add_extension( ... x509.SubjectAlternativeName( - ... [x509.DNSName(b'cryptography.io')] + ... [x509.DNSName(u'cryptography.io')] ... ), ... critical=False ... ) |