[email protected] | 7e49ad3 | 2012-06-14 14:22:07 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
[email protected] | 3469e7e | 2010-10-14 20:34:59 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
3 | // found in the LICENSE file. | ||||
4 | |||||
[email protected] | 7e49ad3 | 2012-06-14 14:22:07 | [diff] [blame] | 5 | #ifndef BASE_GUID_H_ |
6 | #define BASE_GUID_H_ | ||||
[email protected] | 3469e7e | 2010-10-14 20:34:59 | [diff] [blame] | 7 | |
avi | 9b6f4293 | 2015-12-26 22:15:14 | [diff] [blame] | 8 | #include <stdint.h> |
9 | |||||
[email protected] | 3469e7e | 2010-10-14 20:34:59 | [diff] [blame] | 10 | #include <string> |
11 | |||||
[email protected] | 7e49ad3 | 2012-06-14 14:22:07 | [diff] [blame] | 12 | #include "base/base_export.h" |
kinuko | 4ad1f55 | 2016-04-27 11:00:20 | [diff] [blame] | 13 | #include "base/strings/string_piece.h" |
[email protected] | 3469e7e | 2010-10-14 20:34:59 | [diff] [blame] | 14 | #include "build/build_config.h" |
15 | |||||
[email protected] | 7e49ad3 | 2012-06-14 14:22:07 | [diff] [blame] | 16 | namespace base { |
[email protected] | 3469e7e | 2010-10-14 20:34:59 | [diff] [blame] | 17 | |
John Mellor | afab972 | 2017-09-26 16:28:19 | [diff] [blame] | 18 | // Generate a 128-bit random GUID in the form of version 4 as described in |
19 | // RFC 4122, section 4.4. | ||||
kinuko | 4ad1f55 | 2016-04-27 11:00:20 | [diff] [blame] | 20 | // The format of GUID version 4 must be xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx, |
21 | // where y is one of [8, 9, A, B]. | ||||
22 | // The hexadecimal values "a" through "f" are output as lower case characters. | ||||
John Mellor | afab972 | 2017-09-26 16:28:19 | [diff] [blame] | 23 | // |
24 | // A cryptographically secure random source will be used, but consider using | ||||
25 | // UnguessableToken for greater type-safety if GUID format is unnecessary. | ||||
[email protected] | 7e49ad3 | 2012-06-14 14:22:07 | [diff] [blame] | 26 | BASE_EXPORT std::string GenerateGUID(); |
[email protected] | 3469e7e | 2010-10-14 20:34:59 | [diff] [blame] | 27 | |
kinuko | 4ad1f55 | 2016-04-27 11:00:20 | [diff] [blame] | 28 | // Returns true if the input string conforms to the version 4 GUID format. |
29 | // Note that this does NOT check if the hexadecimal values "a" through "f" | ||||
30 | // are in lower case characters, as Version 4 RFC says onput they're | ||||
31 | // case insensitive. (Use IsValidGUIDOutputString for checking if the | ||||
32 | // given string is valid output string) | ||||
33 | BASE_EXPORT bool IsValidGUID(const base::StringPiece& guid); | ||||
[email protected] | d3d728e9 | 2010-10-20 03:24:55 | [diff] [blame] | 34 | |
kinuko | 4ad1f55 | 2016-04-27 11:00:20 | [diff] [blame] | 35 | // Returns true if the input string is valid version 4 GUID output string. |
36 | // This also checks if the hexadecimal values "a" through "f" are in lower | ||||
37 | // case characters. | ||||
38 | BASE_EXPORT bool IsValidGUIDOutputString(const base::StringPiece& guid); | ||||
39 | |||||
[email protected] | 3469e7e | 2010-10-14 20:34:59 | [diff] [blame] | 40 | // For unit testing purposes only. Do not use outside of tests. |
avi | 9b6f4293 | 2015-12-26 22:15:14 | [diff] [blame] | 41 | BASE_EXPORT std::string RandomDataToGUIDString(const uint64_t bytes[2]); |
[email protected] | 3469e7e | 2010-10-14 20:34:59 | [diff] [blame] | 42 | |
[email protected] | 4461e9ad | 2013-09-27 08:52:29 | [diff] [blame] | 43 | } // namespace base |
[email protected] | 3469e7e | 2010-10-14 20:34:59 | [diff] [blame] | 44 | |
[email protected] | 7e49ad3 | 2012-06-14 14:22:07 | [diff] [blame] | 45 | #endif // BASE_GUID_H_ |