Spaces:
Running
Running
remove bcrypt and simplify auth
Browse files- app.py +8 -15
- requirements.txt +0 -1
app.py
CHANGED
@@ -2,7 +2,7 @@ import streamlit as st
|
|
2 |
import random
|
3 |
import time
|
4 |
import hmac
|
5 |
-
import
|
6 |
|
7 |
st.header(" Scientific Claim Verification ")
|
8 |
|
@@ -18,20 +18,13 @@ def check_password():
|
|
18 |
|
19 |
def password_entered():
|
20 |
"""Checks whether a password entered by the user is correct."""
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
# Compare user-entered password (encoded) with stored hash
|
30 |
-
if bcrypt.checkpw(st.session_state["password"].encode(), stored_hashed_password):
|
31 |
-
st.session_state["password_correct"] = True
|
32 |
-
del st.session_state["password"] # Remove credentials from session
|
33 |
-
del st.session_state["username"]
|
34 |
-
return
|
35 |
|
36 |
# If authentication fails
|
37 |
st.session_state["password_correct"] = False
|
|
|
2 |
import random
|
3 |
import time
|
4 |
import hmac
|
5 |
+
import os
|
6 |
|
7 |
st.header(" Scientific Claim Verification ")
|
8 |
|
|
|
18 |
|
19 |
def password_entered():
|
20 |
"""Checks whether a password entered by the user is correct."""
|
21 |
+
|
22 |
+
stored_password = os.getenv(st.session_state["username"])
|
23 |
+
if stored_password == st.session_state["password"]:
|
24 |
+
st.session_state["password_correct"] = True
|
25 |
+
del st.session_state["password"] # Remove credentials from session
|
26 |
+
del st.session_state["username"]
|
27 |
+
return
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
|
29 |
# If authentication fails
|
30 |
st.session_state["password_correct"] = False
|
requirements.txt
CHANGED
@@ -1 +0,0 @@
|
|
1 |
-
bcrypt==4.2.1
|
|
|
|