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

Unified Diff: net/http/ntlm.h

Issue 2873673002: Add unit tests for NTLMv1 portable implementation (Closed)
Patch Set: Cleanup 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
index 93b455deb9aee68ac39a3a2c6f0453c1133dd6e6..8df71e1e3294854ef4eaa475a65debcfc374b3e3 100644
--- a/net/http/ntlm.h
+++ b/net/http/ntlm.h
@@ -72,6 +72,7 @@ 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;
+static constexpr size_t CHALLENGE_HEADER_LEN = 32;
static constexpr size_t RESPONSE_V1_LEN = 24;
static constexpr size_t CHALLENGE_LEN = 8;
static constexpr size_t NTLM_HASH_LEN = 16;

Powered by Google App Engine
This is Rietveld 408576698