osb/source/core/StarSecureRandom.hpp
2024-02-25 15:46:47 +01:00

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);
}