diff options
author | Simo Sorce <simo@redhat.com> | 2013-10-22 11:50:13 -0400 |
---|---|---|
committer | Simo Sorce <simo@redhat.com> | 2013-10-22 11:50:13 -0400 |
commit | e5398b6448041cf90d8929b4845abba79a0777b9 (patch) | |
tree | 8d565f04e271dc72cc0ec858a13a2f715e28bdfc /src/ntlm.c | |
parent | 357d28bfb2fd9635234a0d7e657fc3c6266c0ef7 (diff) | |
download | gss-ntlmssp-v1crypto.tar.gz gss-ntlmssp-v1crypto.tar.xz gss-ntlmssp-v1crypto.zip |
Add support for NTLMv1 Signing and Sealingv1crypto
Including tests to verify conformance to MS-NLMP
Diffstat (limited to 'src/ntlm.c')
-rw-r--r-- | src/ntlm.c | 17 |
1 files changed, 0 insertions, 17 deletions
@@ -142,23 +142,6 @@ struct wire_ntlm_cli_chal { }; #pragma pack(pop) -/* signature structure, v1 or v2 */ -#pragma pack(push, 1) -union wire_msg_signature { - struct { - uint32_t version; - uint8_t random_pad[4]; - uint8_t checksum[4]; - uint32_t seq_num; - } v1; - struct { - uint32_t version; - uint8_t checksum[8]; - uint32_t seq_num; - } v2; -}; -#pragma pack(pop) - /* Version information. * Used only for debugging and usually placed as the head of the payload when * used */ |