6352e8e319
all at once
11 lines
191 B
C++
11 lines
191 B
C++
#include "StarSecureRandom.hpp"
|
|
#include "StarFile.hpp"
|
|
|
|
namespace Star {
|
|
|
|
ByteArray secureRandomBytes(size_t size) {
|
|
return File::open("/dev/urandom", IOMode::Read)->readBytes(size);
|
|
}
|
|
|
|
}
|