random_string.h 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. // Copyright 2015 The Crashpad Authors. All rights reserved.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. #ifndef CRASHPAD_UTIL_MISC_RANDOM_STRING_H_
  15. #define CRASHPAD_UTIL_MISC_RANDOM_STRING_H_
  16. #include <string>
  17. namespace crashpad {
  18. //! \brief Returns a random string.
  19. //!
  20. //! The string consists of 16 uppercase characters chosen at random. The
  21. //! returned string has over 75 bits of randomness (26<sup>16</sup> &gt;
  22. //! 2<sup>75</sup>).
  23. std::string RandomString();
  24. } // namespace crashpad
  25. #endif // CRASHPAD_UTIL_MISC_RANDOM_STRING_H_