Path to this page:
Subject: CVS commit: pkgsrc/security/py-argon2-cffi
From: Adam Ciarcinski
Date: 2023-10-04 22:38:54
Message id: 20231004203854.CC2F6FBDB@cvs.NetBSD.org
Log Message:
py-argon2-cffi: updated to 23.1.0
23.1.0
Removed
- Python 3.6 is not supported anymore.
Deprecated
- The `InvalidHash` exception is deprecated in favor of `InvalidHashError`.
No plans for removal currently exist and the names can (but shouldn't) be used \
interchangeably.
- `argon2.hash_password()`, `argon2.hash_password_raw()`, and \
`argon2.verify_password()` that have been soft-deprecated since 2016 are now \
hard-deprecated.
They now raise `DeprecationWarning`s and will be removed in 2024.
Added
- Official support for Python 3.11 and 3.12.
No code changes were necessary.
- `argon2.exceptions.InvalidHashError` as a replacement for `InvalidHash`.
- *salt* parameter to `argon2.PasswordHasher.hash()` to allow for custom salts.
This is only useful for specialized use-cases -- leave it on None unless you \
know exactly what you are doing.
Files: