Compare commits

..

2 Commits

Author SHA1 Message Date
81ea634b3a Merge branch 'master' of https://git.kmlabz.com/BiztProtoBois/server
All checks were successful
continuous-integration/drone/push Build is passing
2021-04-25 18:09:51 +02:00
5e1e9f3e69 Duplicate row in auth 2021-04-25 18:09:43 +02:00

View File

@ -47,7 +47,6 @@ class Authetication:
for user in data['user']: for user in data['user']:
if username == user['username']: if username == user['username']:
b64pwd = b64encode(SHA256.new(password.encode('utf-8')).digest())
try: try:
b64pwd = b64encode(SHA256.new(password.encode('utf-8')).digest()) b64pwd = b64encode(SHA256.new(password.encode('utf-8')).digest())
bcrypt_check(b64pwd, user['password'].encode('utf-8')) bcrypt_check(b64pwd, user['password'].encode('utf-8'))