1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

auth:ntlmssp: Use generate_random_buffer() for session keys

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Alexander Bokovoy <ab@samba.org>

Autobuild-User(master): Alexander Bokovoy <ab@samba.org>
Autobuild-Date(master): Wed Aug 14 16:26:47 UTC 2019 on sn-devel-184
This commit is contained in:
Andreas Schneider 2019-08-12 19:07:15 +02:00 committed by Alexander Bokovoy
parent 6fa3e4de7c
commit 9b7825d2d3

View File

@ -696,7 +696,7 @@ NTSTATUS ntlmssp_client_challenge(struct gensec_security *gensec_security,
.size = session_key.length, .size = session_key.length,
}; };
generate_secret_buffer(client_session_key, sizeof(client_session_key)); generate_random_buffer(client_session_key, sizeof(client_session_key));
/* Encrypt the new session key with the old one */ /* Encrypt the new session key with the old one */
encrypted_session_key = data_blob_talloc(ntlmssp_state, encrypted_session_key = data_blob_talloc(ntlmssp_state,