12 lines
219 B
C++
12 lines
219 B
C++
#pragma once
|
|
|
|
#include "StarByteArray.hpp"
|
|
|
|
namespace Star {
|
|
|
|
// Generate cryptographically secure random numbers for usage in password salts
|
|
// and such using OS facilities
|
|
ByteArray secureRandomBytes(size_t size);
|
|
|
|
}
|