We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b98edcf commit f53224aCopy full SHA for f53224a
pyproject.toml
st2auth_flat_file_backend/__init__.py
@@ -19,4 +19,4 @@
19
20
__all__ = ["FlatFileAuthenticationBackend"]
21
22
-__version__ = "0.4.0"
+__version__ = "0.4.1"
st2auth_flat_file_backend/flat_file.py
@@ -18,10 +18,11 @@
18
import bcrypt
import base64
import hashlib
-import apr1
import crypt # deprecated in 3.11 and removed in 3.13.
23
from hmac import compare_digest as compare_hash
24
+from . import apr1
25
+
26
# Reference: https://httpd.apache.org/docs/2.4/misc/password_encryptions.html
27
# https://akkadia.org/drepper/SHA-crypt.txt
28
0 commit comments