blob: be5c58b53599d43a96e26168b0d4be9db546bb7f [file] [log] [blame]
[email protected]7e49ad32012-06-14 14:22:071// Copyright (c) 2012 The Chromium Authors. All rights reserved.
[email protected]d3d728e92010-10-20 03:24:552// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
[email protected]7e49ad32012-06-14 14:22:075#include "base/guid.h"
[email protected]d3d728e92010-10-20 03:24:556
benchan57d121ac2014-09-05 05:08:327#include "base/strings/string_util.h"
8
[email protected]7e49ad32012-06-14 14:22:079namespace base {
[email protected]d3d728e92010-10-20 03:24:5510
11bool IsValidGUID(const std::string& guid) {
12 const size_t kGUIDLength = 36U;
13 if (guid.length() != kGUIDLength)
14 return false;
15
benchan57d121ac2014-09-05 05:08:3216 for (size_t i = 0; i < guid.length(); ++i) {
[email protected]d3d728e92010-10-20 03:24:5517 char current = guid[i];
18 if (i == 8 || i == 13 || i == 18 || i == 23) {
19 if (current != '-')
20 return false;
21 } else {
benchan57d121ac2014-09-05 05:08:3222 if (!IsHexDigit(current))
[email protected]d3d728e92010-10-20 03:24:5523 return false;
24 }
25 }
26
27 return true;
28}
29
[email protected]4461e9ad2013-09-27 08:52:2930} // namespace base