OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "chromeos/network/onc/onc_constants.h" | 5 #include "chromeos/network/onc/onc_constants.h" |
6 | 6 |
7 namespace chromeos { | 7 namespace chromeos { |
8 | 8 |
9 // Constants for ONC properties. | 9 // Constants for ONC properties. |
10 namespace onc { | 10 namespace onc { |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 const char kCipher[] = "Cipher"; | 92 const char kCipher[] = "Cipher"; |
93 const char kCiphertext[] = "Ciphertext"; | 93 const char kCiphertext[] = "Ciphertext"; |
94 const char kHMACMethod[] = "HMACMethod"; | 94 const char kHMACMethod[] = "HMACMethod"; |
95 const char kHMAC[] = "HMAC"; | 95 const char kHMAC[] = "HMAC"; |
96 const char kIV[] = "IV"; | 96 const char kIV[] = "IV"; |
97 const char kIterations[] = "Iterations"; | 97 const char kIterations[] = "Iterations"; |
98 const char kPBKDF2[] = "PBKDF2"; | 98 const char kPBKDF2[] = "PBKDF2"; |
99 const char kSHA1[] = "SHA1"; | 99 const char kSHA1[] = "SHA1"; |
100 const char kSalt[] = "Salt"; | 100 const char kSalt[] = "Salt"; |
101 const char kStretch[] = "Stretch"; | 101 const char kStretch[] = "Stretch"; |
102 const char kType[] = "Type"; | |
103 } // namespace encrypted | 102 } // namespace encrypted |
104 | 103 |
105 namespace eap { | 104 namespace eap { |
106 const char kAnonymousIdentity[] = "AnonymousIdentity"; | 105 const char kAnonymousIdentity[] = "AnonymousIdentity"; |
107 const char kAutomatic[] = "Automatic"; | 106 const char kAutomatic[] = "Automatic"; |
108 const char kClientCertPattern[] = "ClientCertPattern"; | 107 const char kClientCertPattern[] = "ClientCertPattern"; |
109 const char kClientCertRef[] = "ClientCertRef"; | 108 const char kClientCertRef[] = "ClientCertRef"; |
110 const char kClientCertType[] = "ClientCertType"; | 109 const char kClientCertType[] = "ClientCertType"; |
111 const char kEAP_AKA[] = "EAP-AKA"; | 110 const char kEAP_AKA[] = "EAP-AKA"; |
112 const char kEAP_FAST[] = "EAP-FAST"; | 111 const char kEAP_FAST[] = "EAP-FAST"; |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 } // namespace proxy | 194 } // namespace proxy |
196 | 195 |
197 namespace substitutes { | 196 namespace substitutes { |
198 const char kLoginIDField[] = "${LOGIN_ID}"; | 197 const char kLoginIDField[] = "${LOGIN_ID}"; |
199 const char kEmailField[] = "${LOGIN_EMAIL}"; | 198 const char kEmailField[] = "${LOGIN_EMAIL}"; |
200 } // namespace substitutes | 199 } // namespace substitutes |
201 | 200 |
202 } // namespace onc | 201 } // namespace onc |
203 | 202 |
204 } // namespace chromeos | 203 } // namespace chromeos |
OLD | NEW |