// Copyright 2020 Google LLC. All Rights Reserved. #ifndef BASE_STRINGS_STRING_NUMBER_CONVERSIONS_H_ #define BASE_STRINGS_STRING_NUMBER_CONVERSIONS_H_ #include #include #include namespace base { // Returns a hex string representation of a binary buffer. std::string HexEncode(const void* bytes, size_t size); } // namespace base #endif // BASE_STRINGS_STRING_NUMBER_CONVERSIONS_H_