Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions pyproject.toml

This file was deleted.

2 changes: 1 addition & 1 deletion st2auth_flat_file_backend/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@

__all__ = ["FlatFileAuthenticationBackend"]

__version__ = "0.4.0"
__version__ = "0.4.1"
3 changes: 2 additions & 1 deletion st2auth_flat_file_backend/flat_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@
import bcrypt
import base64
import hashlib
import apr1
import crypt # deprecated in 3.11 and removed in 3.13.
from hmac import compare_digest as compare_hash

from . import apr1

# Reference: https://httpd.apache.org/docs/2.4/misc/password_encryptions.html
# https://akkadia.org/drepper/SHA-crypt.txt

Expand Down