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