guid.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. // 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. #ifndef BASE_GUID_H_
  5. #define BASE_GUID_H_
  6. #include <stdint.h>
  7. #include <string>
  8. #include "base/base_export.h"
  9. #include "base/strings/string_piece.h"
  10. #include "build/build_config.h"
  11. namespace base {
  12. // Generate a 128-bit random GUID in the form of version 4 as described in
  13. // RFC 4122, section 4.4.
  14. // The format of GUID version 4 must be xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx,
  15. // where y is one of [8, 9, A, B].
  16. // The hexadecimal values "a" through "f" are output as lower case characters.
  17. //
  18. // A cryptographically secure random source will be used, but consider using
  19. // UnguessableToken for greater type-safety if GUID format is unnecessary.
  20. BASE_EXPORT std::string GenerateGUID();
  21. // Returns true if the input string conforms to the version 4 GUID format.
  22. // Note that this does NOT check if the hexadecimal values "a" through "f"
  23. // are in lower case characters, as Version 4 RFC says onput they're
  24. // case insensitive. (Use IsValidGUIDOutputString for checking if the
  25. // given string is valid output string)
  26. BASE_EXPORT bool IsValidGUID(base::StringPiece guid);
  27. BASE_EXPORT bool IsValidGUID(base::StringPiece16 guid);
  28. // Returns true if the input string is valid version 4 GUID output string.
  29. // This also checks if the hexadecimal values "a" through "f" are in lower
  30. // case characters.
  31. BASE_EXPORT bool IsValidGUIDOutputString(base::StringPiece guid);
  32. // For unit testing purposes only. Do not use outside of tests.
  33. BASE_EXPORT std::string RandomDataToGUIDString(const uint64_t bytes[2]);
  34. } // namespace base
  35. #endif // BASE_GUID_H_