i2pdtunnelwizard/randomstringgenerator.h

11 lines
167 B
C++

#pragma once
#include <string>
class RandomStringGenerator
{
public:
RandomStringGenerator() = delete;
static std::u8string getU8string(uint16_t length);
};