Exemplo n.º 1
0
    def check_password(self, password):
        """
        Hash a given password and check it against the stored value
        to determine it's validity.

        :param password:
        :return:
        """
        return bcrypt.check_password_hash(self.password, password)
Exemplo n.º 2
0
    def check_password(self, password):
        """
        Hash a given password and check it against the stored value
        to determine it's validity.

        :param password:
        :return:
        """
        return bcrypt.check_password_hash(self.password, password)