define hash function
This commit is contained in:
parent
b42ef06d91
commit
4dc47e547a
1 changed files with 5 additions and 0 deletions
5
auth.py
5
auth.py
|
@ -28,6 +28,11 @@ def write_pwdb(pwdb, PWDB_PATH):
|
|||
pwdb_file = open(PWDB_PATH, 'wt')
|
||||
json.dump(pwdb, pwdb_file)
|
||||
|
||||
def hash_password(password):
|
||||
hash = 0
|
||||
for c in password.split():
|
||||
hash += ord(c)
|
||||
return hash
|
||||
|
||||
if __name__ == "__main__":
|
||||
PWDB_PATH = 'pwdb.json'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue