[3.10] bpo-44309: Add support for yescrypt in crypt. (GH-26526)#26527
[3.10] bpo-44309: Add support for yescrypt in crypt. (GH-26526)#26527besser82 wants to merge 2 commits intopython:3.10from
Conversation
|
Hello, and thanks for your contribution! I'm a bot set up to make sure that the project can legally accept this contribution by verifying everyone involved has signed the PSF contributor agreement (CLA). CLA MissingOur records indicate the following people have not signed the CLA: For legal reasons we need all the people listed to sign the CLA before we can look at your contribution. Please follow the steps outlined in the CPython devguide to rectify this issue. If you have recently signed the CLA, please wait at least one business day You can check yourself to see if the CLA has been received. Thanks again for the contribution, we look forward to reviewing it! |
406df6d to
a889a1e
Compare
https://bugs.python.org/issue44309 Signed-off-by: Björn Esser <[email protected]>
a889a1e to
9e295f0
Compare
Co-authored-by: Serhiy Storchaka <[email protected]>
|
Python 3.10 is now in beta phase and no longer receives new features. |
Proposed PR adds support for a new method in the crypt module:
yescrypt. It is considered stronger as SHA512 or blowfish and as strong as argon2 for crypt() purpose. The hashing method was developed by the author of the blowfish crypt method, and was based on scrypt. It is supported on most Linux distributions, that ship with libxcrypt as a replacement for the glibc crypt library: Fedora, Debian, Ubuntu, OpenSUSE and many others.
https://bugs.python.org/issue44309
https://bugs.python.org/issue44309