#include "ossl_random.hpp" #include #include #include std::string bmcweb::getRandomUUID() { using bmcweb::OpenSSLGenerator; OpenSSLGenerator ossl; return boost::uuids::to_string( boost::uuids::basic_random_generator(ossl)()); }