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

r13466: Make it easier to understand what this function actually does.

Andrew Bartlett
(This used to be commit f075497926f3b8131bf8427ee3a3d5c9e5ee77d7)
This commit is contained in:
Andrew Bartlett 2006-02-12 12:04:41 +00:00 committed by Gerald (Jerry) Carter
parent debf1c9a92
commit 93d6990dd4

View File

@ -270,13 +270,13 @@ void SMBsesskeygen_lm_sess_key(const uint8_t lm_hash[16],
/* Calculate the LM session key (effective length 40 bits,
but changes with each session) */
uint8_t p24[24];
uint8_t p21[21];
uint8_t partial_lm_hash[14];
memset(p21,'\0',21);
memcpy(p21, lm_hash, 8);
memset(p21 + 8, 0xbd, 8);
memcpy(partial_lm_hash, lm_hash, 8);
memset(partial_lm_hash + 8, 0xbd, 6);
E_P24(p21, lm_resp, p24);
des_crypt56(p24, lm_resp, partial_lm_hash, 1);
des_crypt56(p24+8, lm_resp, partial_lm_hash + 7, 1);
memcpy(sess_key, p24, 16);