AuroraRuntime/Source/RNG/AuRNGEntropy.hpp

16 lines
299 B
C++
Raw Normal View History

/***
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
2022-11-17 07:46:07 +00:00
File: AuRNGEntropy.hpp
Date: 2022-9-17
Author: Reece
***/
#pragma once
namespace Aurora::RNG
{
void EntropyInit();
void EntropyDeinit();
AuUInt32 RngGetBytes(AuUInt8 *out, AuUInt32 outlen);
}