summaryrefslogtreecommitdiffstats
path: root/src/ntlm.c
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2013-10-22 11:50:13 -0400
committerSimo Sorce <simo@redhat.com>2013-10-22 11:50:13 -0400
commite5398b6448041cf90d8929b4845abba79a0777b9 (patch)
tree8d565f04e271dc72cc0ec858a13a2f715e28bdfc /src/ntlm.c
parent357d28bfb2fd9635234a0d7e657fc3c6266c0ef7 (diff)
downloadgss-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.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/ntlm.c b/src/ntlm.c
index 3e00ceb..af6d57a 100644
--- a/src/ntlm.c
+++ b/src/ntlm.c
@@ -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 */