#ifndef PLATFORM_IMPL_LINUX_UTILS_H_ #define PLATFORM_IMPL_LINUX_UTILS_H_ #include #include #include #include #include "absl/strings/string_view.h" #include "internal/platform/uuid.h" namespace nearby { namespace linux { std::optional UuidFromString(const std::string &uuid_str); std::optional NewUuidStr(); std::string RandSSID(); std::string RandWPAPassphrase(); } // namespace linux } // namespace nearby #endif // PLATFORM_IMPL_LINUX_UTILS_H_