Fixed #26395 -- Skipped the CryptPasswordHasher tests on platforms with a dummy crypt module.

This commit is contained in:
Tim Graham 2016-03-22 09:47:12 -04:00
parent 5ca08f7cab
commit 1243fdf5cb
2 changed files with 5 additions and 0 deletions

View File

@ -602,6 +602,7 @@ class CryptPasswordHasher(BasePasswordHasher):
crypt = self._load_library()
assert len(salt) == 2
data = crypt.crypt(force_str(password), salt)
assert data is not None # A platform like OpenBSD with a dummy crypt module.
# we don't need to store the salt, but Django used to do this
return "%s$%s$%s" % (self.algorithm, '', data)

View File

@ -19,6 +19,10 @@ try:
import crypt
except ImportError:
crypt = None
else:
# On some platforms (e.g. OpenBSD), crypt.crypt() always return None.
if crypt.crypt('', '') is None:
crypt = None
try:
import bcrypt