Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2197)

Unified Diff: net/http/ntlm.h

Issue 2879353002: Add a buffer reader/writer for NTLM. (Closed)
Patch Set: Add a buffer reader/writer for NTLM. Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/http/ntlm.h
diff --git a/net/http/ntlm.h b/net/http/ntlm.h
new file mode 100644
index 0000000000000000000000000000000000000000..0bd290533e1df78cd8550ecce4a59db6dbe46a1b
--- /dev/null
+++ b/net/http/ntlm.h
@@ -0,0 +1,65 @@
+// Copyright (c) 2017 The Chromium Authors. All rights reserved.
Ryan Sleevi 2017/06/08 18:36:33 No (c) needed
zentaro 2017/06/12 23:12:05 Done. Here and others. I assume this is new since
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef NET_BASE_NTLM_H_
+#define NET_BASE_NTLM_H_
asanka 2017/06/08 18:44:57 Nit: I'd suggest using the ntlm.h header for the A
zentaro 2017/06/12 23:12:04 TODO(zentaro): I'm going to do this round of feedb
+
+#include <stddef.h>
+#include <stdint.h>
+
+#include "base/macros.h"
+#include "net/base/net_export.h"
+
+namespace net {
+namespace ntlm {
+
+struct SecurityBuffer {
Ryan Sleevi 2017/06/08 18:36:33 Document?
zentaro 2017/06/12 23:12:04 Done.
asanka 2017/06/16 03:21:28 Add that the offset is relative to the start of th
zentaro 2017/06/21 00:38:46 Done.
+ SecurityBuffer(uint32_t offset, uint16_t length)
+ : offset(offset), length(length) {}
+
+ SecurityBuffer() : SecurityBuffer(0, 0) {}
+ uint32_t offset;
+ uint16_t length;
+};
+
+enum NtlmVersion {
+ VERSION_NTLM_V1 = 0x01,
+ VERSION_NTLM_V2 = 0x02,
+};
+
+enum MessageType {
+ MESSAGE_NEGOTIATE = 0x01,
+ MESSAGE_CHALLENGE = 0x02,
+ MESSAGE_AUTHENTICATE = 0x03,
+};
+
+// Defined in NTLMSSP Spec 2.2.2.5
asanka 2017/06/08 18:44:57 Let's refer to the spec as [MS-NLMP] which is what
zentaro 2017/06/12 23:12:04 Done. And others.
+// Only the used subset is defined.
+enum NegotiateFlags {
asanka 2017/06/08 18:44:57 Let's make these typed enums. Here and elsewhere.
zentaro 2017/06/12 23:12:04 Done.
asanka 2017/06/16 03:21:28 Thanks for doing this.
+ NTLMSSP_NEGOTIATE_UNICODE = 0x01,
+ NTLMSSP_NEGOTIATE_OEM = 0x02,
+ NTLMSSP_REQUEST_TARGET = 0x04,
+ NTLMSSP_NEGOTIATE_NTLM = 0x200,
+ NTLMSSP_NEGOTIATE_ALWAYS_SIGN = 0x8000,
+ NTLMSSP_NEGOTIATE_EXTENDED_SESSIONSECURITY = 0x80000,
+};
+
+static constexpr uint8_t SIGNATURE[] = "NTLMSSP";
+static constexpr size_t SIGNATURE_LEN = arraysize(SIGNATURE);
+static constexpr size_t SECURITY_BUFFER_LEN =
+ (2 * sizeof(uint16_t)) + sizeof(uint32_t);
+static constexpr size_t NEGOTIATE_MESSAGE_LEN = 32;
asanka 2017/06/08 18:44:57 Recent versions of Windows use a 40 byte NEGOTIATE
zentaro 2017/06/12 23:12:04 Yes. It will be in the CL that adds NTLMv2 (and it
+static constexpr size_t RESPONSE_V1_LEN = 24;
+static constexpr size_t CHALLENGE_LEN = 8;
+static constexpr size_t NTLM_HASH_LEN = 16;
+
+static constexpr uint32_t NEGOTIATE_MESSAGE_FLAGS =
+ NTLMSSP_NEGOTIATE_UNICODE | NTLMSSP_NEGOTIATE_OEM | NTLMSSP_REQUEST_TARGET |
+ NTLMSSP_NEGOTIATE_NTLM | NTLMSSP_NEGOTIATE_ALWAYS_SIGN |
+ NTLMSSP_NEGOTIATE_EXTENDED_SESSIONSECURITY;
+
+} // namespce ntlm
+} // namespace net
+
+#endif // NET_BASE_NTLM_H_
« no previous file with comments | « net/BUILD.gn ('k') | net/http/ntlm_buffer_reader.h » ('j') | net/http/ntlm_buffer_reader.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698