We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
crypt module will be removed. https://peps.python.org/pep-0594/
crypt module is used for Legacy_Auth (for Firebird 3 and 4), so use passlib to fallback.
passlib https://pypi.org/project/passlib/
>>> import crypt >>> crypt.crypt("secret", '9z') '9zMktUfATCrdY'
>>> import passlib.hash >>> passlib.hash.des_crypt.hash("secret", salt='9z') '9zMktUfATCrdY'
The text was updated successfully, but these errors were encountered:
fallback des encription with passlib #99
1de0b72
AttributeError
get_crypt
windows
fix issue #99 and #104
949d703
catch multipule exception. fix issue #99 and #104
c4abd90
passlib
No branches or pull requests
crypt module will be removed.
https://peps.python.org/pep-0594/
crypt module is used for Legacy_Auth (for Firebird 3 and 4), so use passlib to fallback.
passlib
https://pypi.org/project/passlib/
The text was updated successfully, but these errors were encountered: