blob: 33dbc46bb3e96bed9f32f7919c81cfda069b65ce [file] [log] [blame]
Brett Cannondaa57992011-02-22 21:48:06 +00001"""Wrapper to the POSIX crypt library call and associated functionality."""
Sean Reifscheidere2dfefb2011-02-22 10:55:44 +00002
shireenraof4e725f2019-08-08 16:02:49 -04003import sys as _sys
4
5try:
6 import _crypt
7except ModuleNotFoundError:
8 if _sys.platform == 'win32':
9 raise ImportError("The crypt module is not supported on Windows")
10 else:
11 raise ImportError("The required _crypt module was not built as part of CPython")
12
Antonio Gutierrez0d3fe8a2019-10-08 06:22:17 +020013import errno
Christian Heimesafa29732012-06-27 15:36:46 +020014import string as _string
15from random import SystemRandom as _SystemRandom
16from collections import namedtuple as _namedtuple
Sean Reifscheidere2dfefb2011-02-22 10:55:44 +000017
18
Christian Heimesafa29732012-06-27 15:36:46 +020019_saltchars = _string.ascii_letters + _string.digits + './'
20_sr = _SystemRandom()
Brett Cannondaa57992011-02-22 21:48:06 +000021
22
Christian Heimesafa29732012-06-27 15:36:46 +020023class _Method(_namedtuple('_Method', 'name ident salt_chars total_size')):
Brett Cannondaa57992011-02-22 21:48:06 +000024
25 """Class representing a salt method per the Modular Crypt Format or the
26 legacy 2-character crypt method."""
Sean Reifscheidere2dfefb2011-02-22 10:55:44 +000027
28 def __repr__(self):
Brett Cannondaa57992011-02-22 21:48:06 +000029 return '<crypt.METHOD_{}>'.format(self.name)
30
31
Serhiy Storchakacede8c92017-11-16 13:22:51 +020032def mksalt(method=None, *, rounds=None):
Brett Cannondaa57992011-02-22 21:48:06 +000033 """Generate a salt for the specified method.
34
35 If not specified, the strongest available method will be used.
36
37 """
38 if method is None:
39 method = methods[0]
Serhiy Storchakacede8c92017-11-16 13:22:51 +020040 if rounds is not None and not isinstance(rounds, int):
41 raise TypeError(f'{rounds.__class__.__name__} object cannot be '
42 f'interpreted as an integer')
43 if not method.ident: # traditional
Serhiy Storchakaeab3ff72017-10-24 19:36:17 +030044 s = ''
Serhiy Storchakacede8c92017-11-16 13:22:51 +020045 else: # modular
Serhiy Storchakaeab3ff72017-10-24 19:36:17 +030046 s = f'${method.ident}$'
Serhiy Storchakacede8c92017-11-16 13:22:51 +020047
48 if method.ident and method.ident[0] == '2': # Blowfish variants
49 if rounds is None:
50 log_rounds = 12
51 else:
52 log_rounds = int.bit_length(rounds-1)
53 if rounds != 1 << log_rounds:
54 raise ValueError('rounds must be a power of 2')
55 if not 4 <= log_rounds <= 31:
56 raise ValueError('rounds out of the range 2**4 to 2**31')
57 s += f'{log_rounds:02d}$'
58 elif method.ident in ('5', '6'): # SHA-2
59 if rounds is not None:
60 if not 1000 <= rounds <= 999_999_999:
61 raise ValueError('rounds out of the range 1000 to 999_999_999')
62 s += f'rounds={rounds}$'
63 elif rounds is not None:
64 raise ValueError(f"{method} doesn't support the rounds argument")
65
Victor Stinner7f7b9412013-08-14 01:39:14 +020066 s += ''.join(_sr.choice(_saltchars) for char in range(method.salt_chars))
Brett Cannondaa57992011-02-22 21:48:06 +000067 return s
68
69
70def crypt(word, salt=None):
71 """Return a string representing the one-way hash of a password, with a salt
72 prepended.
73
74 If ``salt`` is not specified or is ``None``, the strongest
75 available method will be selected and a salt generated. Otherwise,
76 ``salt`` may be one of the ``crypt.METHOD_*`` values, or a string as
77 returned by ``crypt.mksalt()``.
78
79 """
80 if salt is None or isinstance(salt, _Method):
81 salt = mksalt(salt)
82 return _crypt.crypt(word, salt)
Sean Reifscheidere2dfefb2011-02-22 10:55:44 +000083
84
85# available salting/crypto methods
Brett Cannoncfbcdbb2011-02-22 21:55:51 +000086methods = []
Serhiy Storchakaeab3ff72017-10-24 19:36:17 +030087
Serhiy Storchakacede8c92017-11-16 13:22:51 +020088def _add_method(name, *args, rounds=None):
Serhiy Storchakaeab3ff72017-10-24 19:36:17 +030089 method = _Method(name, *args)
90 globals()['METHOD_' + name] = method
Serhiy Storchakacede8c92017-11-16 13:22:51 +020091 salt = mksalt(method, rounds=rounds)
Antonio Gutierrez0d3fe8a2019-10-08 06:22:17 +020092 result = None
93 try:
94 result = crypt('', salt)
95 except OSError as e:
96 # Not all libc libraries support all encryption methods.
97 if e.errno == errno.EINVAL:
98 return False
99 raise
Serhiy Storchakaeab3ff72017-10-24 19:36:17 +0300100 if result and len(result) == method.total_size:
101 methods.append(method)
102 return True
103 return False
104
105_add_method('SHA512', '6', 16, 106)
106_add_method('SHA256', '5', 16, 63)
107
108# Choose the strongest supported version of Blowfish hashing.
109# Early versions have flaws. Version 'a' fixes flaws of
110# the initial implementation, 'b' fixes flaws of 'a'.
111# 'y' is the same as 'b', for compatibility
112# with openwall crypt_blowfish.
113for _v in 'b', 'y', 'a', '':
Serhiy Storchakacede8c92017-11-16 13:22:51 +0200114 if _add_method('BLOWFISH', '2' + _v, 22, 59 + len(_v), rounds=1<<4):
Serhiy Storchakaeab3ff72017-10-24 19:36:17 +0300115 break
116
117_add_method('MD5', '1', 8, 34)
118_add_method('CRYPT', None, 2, 13)
119
120del _v, _add_method