16 lines
378 B
C++
16 lines
378 B
C++
// acetone, 2025
|
|
// I hate copyright of any kind. This is a public domain.
|
|
// Original source: http://git.community.i2p/acetone/i2pdtunnelwizard
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
class RandomStringGenerator
|
|
{
|
|
public:
|
|
RandomStringGenerator() = delete;
|
|
static std::u8string getU8string(uint16_t length);
|
|
// static std::u8string getU8stringNumbers(uint16_t length);
|
|
};
|