blob: 657383fc2425f3d3c39c62d2c5ba1dbd0467c45a [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
7#include "base/rand_util.h"
[email protected]251cd6e52013-06-11 13:36:378#include "base/strings/stringprintf.h"
[email protected]d3d728e92010-10-20 03:24:559
[email protected]7e49ad32012-06-14 14:22:0710namespace base {
[email protected]d3d728e92010-10-20 03:24:5511
12bool IsValidGUID(const std::string& guid) {
13 const size_t kGUIDLength = 36U;
14 if (guid.length() != kGUIDLength)
15 return false;
16
17 std::string hexchars = "0123456789ABCDEF";
18 for (uint32 i = 0; i < guid.length(); ++i) {
19 char current = guid[i];
20 if (i == 8 || i == 13 || i == 18 || i == 23) {
21 if (current != '-')
22 return false;
23 } else {
24 if (hexchars.find(current) == std::string::npos)
25 return false;
26 }
27 }
28
29 return true;
30}
31
32} // namespace guid