LeviLamina
Loading...
Searching...
No Matches
Random.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Crypto::Random {
6
7class Random {
8public:
9 // member variables
10 // NOLINTBEGIN
12 // NOLINTEND
13
14public:
15 // prevent constructor by default
16 Random& operator=(Random const&);
17 Random(Random const&);
18 Random();
19
20public:
21 // member functions
22 // NOLINTBEGIN
23 MCAPI ::std::string getBytes(uint amount);
24 // NOLINTEND
25};
26
27} // namespace Crypto::Random
Definition Random.h:7
Definition Alias.h:14