summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2013-11-21 02:35:02 (GMT)
committerChristian Heimes <christian@cheimes.de>2013-11-21 02:35:02 (GMT)
commitefff7060f893c3a06543ab955696663a64eb2109 (patch)
tree21660d8b008f88bc825d098aee142e16a45c8f00 /Misc
parente6e2d9be6e42e901ec3412c27053b821d0503ee0 (diff)
downloadcpython-efff7060f893c3a06543ab955696663a64eb2109.zip
cpython-efff7060f893c3a06543ab955696663a64eb2109.tar.gz
cpython-efff7060f893c3a06543ab955696663a64eb2109.tar.bz2
Issue #18138: Implement cadata argument of SSLContext.load_verify_location()
to load CA certificates and CRL from memory. It supports PEM and DER encoded strings.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 146d46a..a41a5d0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -59,6 +59,10 @@ Core and Builtins
Library
-------
+- Issue #18138: Implement cadata argument of SSLContext.load_verify_location()
+ to load CA certificates and CRL from memory. It supports PEM and DER
+ encoded strings.
+
- Issue #18775: Add name and block_size attribute to HMAC object. They now
provide the same API elements as non-keyed cryptographic hash functions.