2025-plovdiv-git/minimal_auth.py
2025-09-22 16:11:55 +03:00

43 lines
1.3 KiB
Python

import getpass # hides types characters, very useful
import json
import sys
from hashlib import sha256 # This library is used to create hashes out of the password
def get_credentials():
username = input('Enter your username: ')
password = getpass.getpass('Enter your password: ')
return (username, password)
def authenticate(username, password, pwdb):
password_hash = sha256(password.encode("utf-8")).hexdigest()
return password_hash == pwdb[username]
def add_user(username, pwdb):
pwd = getpass.getpass(f'Enter password for {username}: ')
pwdb[username] = sha256(pwd.encode("utf-8")).hexdigest()
return pwdb
def read_pwdb(pwdb_path):
try:
pwdb_file = open(pwdb_path, 'rt')
pwdb = json.load(pwdb_file)
except Exception:
pwdb = {}
return pwdb
def write_pwdb(pwdb, pwdb_path):
pwdb_file = open(pwdb_path, 'wt')
json.dump(pwdb, pwdb_file)
pwdb_path = 'pwdb.json'
pwdb = read_pwdb(pwdb_path)
if len(sys.argv) > 1:
pwdb = add_user(sys.argv[1], pwdb)
write_pwdb(pwdb, pwdb_path)
else:
username, password = get_credentials()
if username not in pwdb or not authenticate(username, password, pwdb):
print('Wrong username or password!')
else:
print('Successfully authenticated!')