Example #1
0
 def authenticate(self, password, request):
     passwrd=self._getPassword()
     result = AuthEncoding.pw_validate(passwrd, password)
     domains=self.getDomains()
     if domains:
         return result and domainSpecMatch(domains, request)
     return result
Example #2
0
 def authenticate(self, password, request):
     passwrd=self._getPassword()
     result = AuthEncoding.pw_validate(passwrd, password)
     domains=self.getDomains()
     if domains:
         return result and domainSpecMatch(domains, request)
     return result
Example #3
0
 def _encryptPassword(self, pw):
     return AuthEncoding.pw_encrypt(pw, 'SSHA')
Example #4
0
 def _isPasswordEncrypted(self, pw):
     return AuthEncoding.is_encrypted(pw)
Example #5
0
 def _encryptPassword(self, pw):
     return AuthEncoding.pw_encrypt(pw, 'SSHA')
Example #6
0
 def _isPasswordEncrypted(self, pw):
     return AuthEncoding.is_encrypted(pw)
Example #7
0
 def check_password(self, attempt):
     return AuthEncoding.pw_validate(self.password, attempt)
Example #8
0
 def hash_password(self, value):
     return AuthEncoding.pw_encrypt(value, self.DEFAULT_PASSWORD_SCHEME)
Example #9
0
def test_bcrypt__BCryptScheme__1():
    """BCryptScheme is registered in AuthEncoding."""
    assert 'BCRYPT' in AuthEncoding.listSchemes()