summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSean Reifscheider <jafo@tummy.com>2011-02-22 10:55:44 (GMT)
committerSean Reifscheider <jafo@tummy.com>2011-02-22 10:55:44 (GMT)
commite2dfefbe85e0471c35062146a218aea2270ea600 (patch)
tree779b690c9e097108530f75b9bf443f8566bd93d7 /Misc
parentf3042782af65fbf68ca7e343357144c676b3fd54 (diff)
downloadcpython-e2dfefbe85e0471c35062146a218aea2270ea600.zip
cpython-e2dfefbe85e0471c35062146a218aea2270ea600.tar.gz
cpython-e2dfefbe85e0471c35062146a218aea2270ea600.tar.bz2
Issue #10924: Adding salt and Modular Crypt Format to crypt library.
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 564f879..a3a246c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -27,6 +27,10 @@ Core and Builtins
Library
-------
+- Issue #10924: Adding salt and Modular Crypt Format to crypt library.
+ Moved old C wrapper to _crypt, and added a Python wrapper with
+ enhanced salt generation and simpler API for password generation.
+
- Issue #11074: Make 'tokenize' so it can be reloaded.
- Issue #11085: Moved collections abstract base classes into a separate