1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-01 04:58:35 +03:00

selftests:password_hash: Raise SHA256 rounds to 5000

Some crypt_r implementations like libxcrypt require a higher value.

Signed-off-by: Samuel Cabrero <scabrero@suse.de>
Reviewed-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
This commit is contained in:
Samuel Cabrero 2019-03-14 19:14:25 +01:00 committed by Andreas Schneider
parent e23425a03c
commit 0063aacbb0

View File

@ -158,7 +158,7 @@ class PassWordHashFl2008Tests(PassWordHashTests):
def test_userPassword_cleartext_sha256(self):
self.add_user(clear_text=True,
options=[("password hash userPassword schemes",
"CryptSHA256:rounds=100")])
"CryptSHA256:rounds=5000")])
sc = self.get_supplemental_creds()
@ -206,5 +206,5 @@ class PassWordHashFl2008Tests(PassWordHashTests):
#
up = ndr_unpack(drsblobs.package_PrimaryUserPasswordBlob,
binascii.a2b_hex(up_package.data))
self.checkUserPassword(up, [("{CRYPT}", "5", 100)])
self.checkUserPassword(up, [("{CRYPT}", "5", 5000)])
self.checkNtHash(USER_PASS, up.current_nt_hash.hash)