From af56dffae49b3379a362f2c4011746f12dceabbf Mon Sep 17 00:00:00 2001 From: Eri Date: Tue, 23 Dec 2025 09:53:18 -0300 Subject: [PATCH 1/2] Added comment for testing --- app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app.py b/app.py index 7c1dffb..255a951 100644 --- a/app.py +++ b/app.py @@ -14,6 +14,7 @@ ALG_PREFIX = { 'sha256': '$5$', } +# The main route @app.route('/') def index(): return render_template('index.html') From 90641f10cc5f9ff5d107b9ef8b100ebb2a096d67 Mon Sep 17 00:00:00 2001 From: Eri Date: Tue, 23 Dec 2025 09:54:14 -0300 Subject: [PATCH 2/2] Testing 2 --- app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app.py b/app.py index 255a951..3217681 100644 --- a/app.py +++ b/app.py @@ -19,6 +19,7 @@ ALG_PREFIX = { def index(): return render_template('index.html') +# This is what generates salt @app.route('/gensalt') def gensalt(): length = max(MIN_SALT_LEN, min(MAX_SALT_LEN, int(request.args.get('length', MIN_SALT_LEN))))