Merge pull request #3026 from globin/stable-1.0
Replace deprecated des_ and fix LibreSSL build
This commit is contained in:
commit
50b9eb203c
@ -456,7 +456,7 @@ void ntlmssp_compute_lm_hash(char* password, char* hash)
|
|||||||
char text[14];
|
char text[14];
|
||||||
char des_key1[8];
|
char des_key1[8];
|
||||||
char des_key2[8];
|
char des_key2[8];
|
||||||
des_key_schedule ks;
|
DES_key_schedule ks;
|
||||||
|
|
||||||
/* LM("password") = E52CAC67419A9A224A3B108F3FA6CB6D */
|
/* LM("password") = E52CAC67419A9A224A3B108F3FA6CB6D */
|
||||||
|
|
||||||
@ -530,7 +530,7 @@ void ntlmssp_compute_lm_response(char* password, char* challenge, char* response
|
|||||||
char des_key1[8];
|
char des_key1[8];
|
||||||
char des_key2[8];
|
char des_key2[8];
|
||||||
char des_key3[8];
|
char des_key3[8];
|
||||||
des_key_schedule ks;
|
DES_key_schedule ks;
|
||||||
|
|
||||||
/* A LM hash is 16-bytes long, but the LM response uses a LM hash null-padded to 21 bytes */
|
/* A LM hash is 16-bytes long, but the LM response uses a LM hash null-padded to 21 bytes */
|
||||||
memset(hash, '\0', 21);
|
memset(hash, '\0', 21);
|
||||||
|
Loading…
Reference in New Issue
Block a user