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

Side by Side Diff: net/ssl/ssl_cipher_suite_names.cc

Issue 1172183002: Move StartsWith[ASCII] to base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@string_util3
Patch Set: merger Created 5 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "net/ssl/ssl_cipher_suite_names.h" 5 #include "net/ssl/ssl_cipher_suite_names.h"
6 6
7 #include <stdlib.h> 7 #include <stdlib.h>
8 8
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/strings/string_number_conversions.h" 10 #include "base/strings/string_number_conversions.h"
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 NOTREACHED() << ssl_version; 342 NOTREACHED() << ssl_version;
343 *name = "???"; 343 *name = "???";
344 break; 344 break;
345 } 345 }
346 } 346 }
347 347
348 bool ParseSSLCipherString(const std::string& cipher_string, 348 bool ParseSSLCipherString(const std::string& cipher_string,
349 uint16* cipher_suite) { 349 uint16* cipher_suite) {
350 int value = 0; 350 int value = 0;
351 if (cipher_string.size() == 6 && 351 if (cipher_string.size() == 6 &&
352 StartsWithASCII(cipher_string, "0x", false /* case insensitive */) && 352 base::StartsWithASCII(cipher_string, "0x",
353 false /* case insensitive */) &&
353 base::HexStringToInt(cipher_string, &value)) { 354 base::HexStringToInt(cipher_string, &value)) {
354 *cipher_suite = static_cast<uint16>(value); 355 *cipher_suite = static_cast<uint16>(value);
355 return true; 356 return true;
356 } 357 }
357 return false; 358 return false;
358 } 359 }
359 360
360 bool IsSecureTLSCipherSuite(uint16 cipher_suite) { 361 bool IsSecureTLSCipherSuite(uint16 cipher_suite) {
361 int key_exchange, cipher, mac; 362 int key_exchange, cipher, mac;
362 if (!GetCipherProperties(cipher_suite, &key_exchange, &cipher, &mac)) 363 if (!GetCipherProperties(cipher_suite, &key_exchange, &cipher, &mac))
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
412 } 413 }
413 414
414 // Only AEADs allowed. 415 // Only AEADs allowed.
415 if (mac != kAEADMACValue) 416 if (mac != kAEADMACValue)
416 return false; 417 return false;
417 418
418 return true; 419 return true;
419 } 420 }
420 421
421 } // namespace net 422 } // namespace net
OLDNEW
« no previous file with comments | « net/server/http_server_unittest.cc ('k') | net/test/embedded_test_server/embedded_test_server.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698