Add inactivity lock feature

This commit is contained in:
thePR0M3TH3AN
2025-06-30 10:06:51 -04:00
parent 1fc3a00531
commit 4801e2c33c
5 changed files with 97 additions and 2 deletions

View File

@@ -52,6 +52,9 @@ DEFAULT_PASSWORD_LENGTH = 16 # Default length for generated passwords
MIN_PASSWORD_LENGTH = 8 # Minimum allowed password length
MAX_PASSWORD_LENGTH = 128 # Maximum allowed password length
# Timeout in seconds before the vault locks due to inactivity
INACTIVITY_TIMEOUT = 15 * 60 # 15 minutes
# -----------------------------------
# Additional Constants (if any)
# -----------------------------------