ykl7 commited on
Commit
168ecfe
·
1 Parent(s): ee3fca4

remove bcrypt and simplify auth

Browse files
Files changed (2) hide show
  1. app.py +8 -15
  2. 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 bcrypt
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
- if st.session_state["username"] in st.secrets["passwords"]:
23
- stored_hashed_password = st.secrets["passwords"][st.session_state["username"]] # Retrieved as a string
24
-
25
- # Convert hashed password back to bytes if it's stored as a string
26
- if isinstance(stored_hashed_password, str):
27
- stored_hashed_password = stored_hashed_password.encode()
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