Add in-memory secret encryption

This commit is contained in:
thePR0M3TH3AN
2025-07-03 09:58:37 -04:00
parent 8b7ad08b65
commit d40156c205
3 changed files with 51 additions and 1 deletions

View File

@@ -24,6 +24,7 @@ try:
)
from .password_prompt import prompt_for_password
from .input_utils import timed_input
from .memory_protection import InMemorySecret
if logger.isEnabledFor(logging.DEBUG):
logger.info("Modules imported successfully.")
@@ -47,4 +48,5 @@ __all__ = [
"shared_lock",
"prompt_for_password",
"timed_input",
"InMemorySecret",
]