blob: 99b037bcfae53d6ea3a89ddcf7a4bb42f33b7584 [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
avi9b6f42932015-12-26 22:15:147#include <stddef.h>
8
benchan57d121ac2014-09-05 05:08:329#include "base/strings/string_util.h"
10
[email protected]7e49ad32012-06-14 14:22:0711namespace base {
[email protected]d3d728e92010-10-20 03:24:5512
13bool IsValidGUID(const std::string& guid) {
14 const size_t kGUIDLength = 36U;
15 if (guid.length() != kGUIDLength)
16 return false;
17
benchan57d121ac2014-09-05 05:08:3218 for (size_t i = 0; i < guid.length(); ++i) {
[email protected]d3d728e92010-10-20 03:24:5519 char current = guid[i];
20 if (i == 8 || i == 13 || i == 18 || i == 23) {
21 if (current != '-')
22 return false;
23 } else {
benchan57d121ac2014-09-05 05:08:3224 if (!IsHexDigit(current))
[email protected]d3d728e92010-10-20 03:24:5525 return false;
26 }
27 }
28
29 return true;
30}
31
[email protected]4461e9ad2013-09-27 08:52:2932} // namespace base