Exemple #1
0
 def check_password(self, plain_text):
     return hash_password(plain_text) == self.hashed_password
Exemple #2
0
 def set_password(self, plain_text):
     self.hashed_password = hash_password(plain_text)