| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef NET_BASE_NTLM_H_ | 5 #ifndef NET_BASE_NTLM_CONSTANTS_H_ |
| 6 #define NET_BASE_NTLM_H_ | 6 #define NET_BASE_NTLM_CONSTANTS_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 #include <type_traits> | 10 #include <type_traits> |
| 11 | 11 |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "net/base/net_export.h" | 13 #include "net/base/net_export.h" |
| 14 | 14 |
| 15 namespace net { | 15 namespace net { |
| 16 namespace ntlm { | 16 namespace ntlm { |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 | 68 |
| 69 return static_cast<NegotiateFlags>(static_cast<TFlagsInt>(lhs) & | 69 return static_cast<NegotiateFlags>(static_cast<TFlagsInt>(lhs) & |
| 70 static_cast<TFlagsInt>(rhs)); | 70 static_cast<TFlagsInt>(rhs)); |
| 71 } | 71 } |
| 72 | 72 |
| 73 static constexpr uint8_t SIGNATURE[] = "NTLMSSP"; | 73 static constexpr uint8_t SIGNATURE[] = "NTLMSSP"; |
| 74 static constexpr size_t SIGNATURE_LEN = arraysize(SIGNATURE); | 74 static constexpr size_t SIGNATURE_LEN = arraysize(SIGNATURE); |
| 75 static constexpr size_t SECURITY_BUFFER_LEN = | 75 static constexpr size_t SECURITY_BUFFER_LEN = |
| 76 (2 * sizeof(uint16_t)) + sizeof(uint32_t); | 76 (2 * sizeof(uint16_t)) + sizeof(uint32_t); |
| 77 static constexpr size_t NEGOTIATE_MESSAGE_LEN = 32; | 77 static constexpr size_t NEGOTIATE_MESSAGE_LEN = 32; |
| 78 static constexpr size_t CHALLENGE_HEADER_LEN = 32; |
| 78 static constexpr size_t RESPONSE_V1_LEN = 24; | 79 static constexpr size_t RESPONSE_V1_LEN = 24; |
| 79 static constexpr size_t CHALLENGE_LEN = 8; | 80 static constexpr size_t CHALLENGE_LEN = 8; |
| 80 static constexpr size_t NTLM_HASH_LEN = 16; | 81 static constexpr size_t NTLM_HASH_LEN = 16; |
| 81 | 82 |
| 82 static constexpr NegotiateFlags NEGOTIATE_MESSAGE_FLAGS = | 83 static constexpr NegotiateFlags NEGOTIATE_MESSAGE_FLAGS = |
| 83 NegotiateFlags::UNICODE | NegotiateFlags::OEM | | 84 NegotiateFlags::UNICODE | NegotiateFlags::OEM | |
| 84 NegotiateFlags::REQUEST_TARGET | NegotiateFlags::NTLM | | 85 NegotiateFlags::REQUEST_TARGET | NegotiateFlags::NTLM | |
| 85 NegotiateFlags::ALWAYS_SIGN | NegotiateFlags::EXTENDED_SESSIONSECURITY; | 86 NegotiateFlags::ALWAYS_SIGN | NegotiateFlags::EXTENDED_SESSIONSECURITY; |
| 86 | 87 |
| 87 } // namespace ntlm | 88 } // namespace ntlm |
| 88 } // namespace net | 89 } // namespace net |
| 89 | 90 |
| 90 #endif // NET_BASE_NTLM_H_ | 91 #endif // NET_BASE_NTLM_CONSTANTS_H_ |
| OLD | NEW |