Ensuring that password hashes are compared correctly under python3

This commit is contained in:
kevgliss 2016-09-07 13:25:51 -07:00 committed by GitHub
parent 76cece7b90
commit a60e372c5a
3 changed files with 7 additions and 7 deletions

View File

@ -289,7 +289,7 @@ class Providers(Resource):
def get(self): def get(self):
active_providers = [] active_providers = []
for provider in current_app.config.get("ACTIVE_PROVIDERS"): for provider in current_app.config.get("ACTIVE_PROVIDERS", []):
provider = provider.lower() provider = provider.lower()
if provider == "google": if provider == "google":

View File

@ -8,6 +8,7 @@
.. moduleauthor:: Kevin Glisson <kglisson@netflix.com> .. moduleauthor:: Kevin Glisson <kglisson@netflix.com>
""" """
import sys
from sqlalchemy.orm import relationship from sqlalchemy.orm import relationship
from sqlalchemy import Column, Integer, String, Boolean, DateTime from sqlalchemy import Column, Integer, String, Boolean, DateTime
from sqlalchemy.event import listen from sqlalchemy.event import listen
@ -62,6 +63,9 @@ class User(db.Model):
:return: :return:
""" """
if self.password: if self.password:
if sys.version_info[0] >= 3:
self.password = bcrypt.generate_password_hash(self.password).decode('utf-8')
else:
self.password = bcrypt.generate_password_hash(self.password) self.password = bcrypt.generate_password_hash(self.password)
return self.password return self.password

View File

@ -54,11 +54,7 @@ def get_keys():
# when running lemur create_config, this code needs to work despite # when running lemur create_config, this code needs to work despite
# the fact that there is not a current_app with a config at that point # the fact that there is not a current_app with a config at that point
try: keys = current_app.config.get('LEMUR_ENCRYPTION_KEYS', [])
keys = current_app.config.get('LEMUR_ENCRYPTION_KEYS')
except Exception:
print("no encryption keys")
return []
# this function is expected to return a list of keys, but we want # this function is expected to return a list of keys, but we want
# to let people just specify a single key # to let people just specify a single key