1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-04 17:47:26 +03:00

s4:ntlmssp: copy dump_arc4_state() from source3

metze

Signed-off-by: Günther Deschner <gd@samba.org>
This commit is contained in:
Stefan Metzmacher 2010-01-06 16:59:35 +01:00 committed by Günther Deschner
parent a69260642e
commit 48d8157879

View File

@ -40,6 +40,12 @@
*
*/
static void dump_arc4_state(const char *description,
struct arcfour_state *state)
{
dump_data_pw(description, state->sbox, sizeof(state->sbox));
}
static void calc_ntlmv2_key(uint8_t subkey[16],
DATA_BLOB session_key,
const char *constant)