mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
Issue #10924: Adding salt and Modular Crypt Format to crypt library.
This commit is contained in:
parent
f3042782af
commit
e2dfefbe85
7 changed files with 183 additions and 13 deletions
|
@ -10,6 +10,23 @@ class CryptTestCase(unittest.TestCase):
|
|||
if support.verbose:
|
||||
print('Test encryption: ', c)
|
||||
|
||||
def test_salt(self):
|
||||
self.assertEqual(len(crypt.saltchars), 64)
|
||||
for method in crypt.methods():
|
||||
salt = crypt.mksalt(method)
|
||||
self.assertEqual(len(salt),
|
||||
method.salt_chars + (3 if method.ident else 0))
|
||||
|
||||
def test_saltedcrypt(self):
|
||||
for method in crypt.methods():
|
||||
pw = crypt.crypt('assword', method)
|
||||
self.assertEqual(len(pw), method.total_size)
|
||||
pw = crypt.crypt('assword', crypt.mksalt(method))
|
||||
self.assertEqual(len(pw), method.total_size)
|
||||
|
||||
def test_methods(self):
|
||||
self.assertTrue(len(crypt.methods()) > 1)
|
||||
|
||||
def test_main():
|
||||
support.run_unittest(CryptTestCase)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue