summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-02-21 09:37:26 (GMT)
committerGitHub <noreply@github.com>2022-02-21 09:37:26 (GMT)
commit633d0f90f933515a9fca21a38cf87a8baf8ddc7d (patch)
treec75261c6c82bcbdd8b59265cfb5dc3ba4f370285 /Misc
parent95d6271f1997580f8cb8a2985d0cd48af912763f (diff)
downloadcpython-633d0f90f933515a9fca21a38cf87a8baf8ddc7d.zip
cpython-633d0f90f933515a9fca21a38cf87a8baf8ddc7d.tar.gz
cpython-633d0f90f933515a9fca21a38cf87a8baf8ddc7d.tar.bz2
bpo-46232: Fix parsing of certs with bit string in DN (GH-30351)
(cherry picked from commit be095f6c32188bba02079d086ac8639ea37cec3c) Co-authored-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2022-01-03-09-46-44.bpo-46232.s0KlyI.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-01-03-09-46-44.bpo-46232.s0KlyI.rst b/Misc/NEWS.d/next/Library/2022-01-03-09-46-44.bpo-46232.s0KlyI.rst
new file mode 100644
index 0000000..e252449
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2022-01-03-09-46-44.bpo-46232.s0KlyI.rst
@@ -0,0 +1,2 @@
+The :mod:`ssl` module now handles certificates with bit strings in DN
+correctly.