blob: be5c58b53599d43a96e26168b0d4be9db546bb7f [file] [log] [blame]
marja@chromium.org9158ee02012-06-14 23:22:07 +09001// 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
3// found in the LICENSE file.
4
5#include "base/guid.h"
6
benchan71c45e92014-09-05 14:08:32 +09007#include "base/strings/string_util.h"
8
marja@chromium.org9158ee02012-06-14 23:22:07 +09009namespace base {
10
11bool IsValidGUID(const std::string& guid) {
12 const size_t kGUIDLength = 36U;
13 if (guid.length() != kGUIDLength)
14 return false;
15
benchan71c45e92014-09-05 14:08:32 +090016 for (size_t i = 0; i < guid.length(); ++i) {
marja@chromium.org9158ee02012-06-14 23:22:07 +090017 char current = guid[i];
18 if (i == 8 || i == 13 || i == 18 || i == 23) {
19 if (current != '-')
20 return false;
21 } else {
benchan71c45e92014-09-05 14:08:32 +090022 if (!IsHexDigit(current))
marja@chromium.org9158ee02012-06-14 23:22:07 +090023 return false;
24 }
25 }
26
27 return true;
28}
29
vabr@chromium.orgdd888082013-09-27 17:52:29 +090030} // namespace base