mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-27 12:15:19 +01:00
620401dca6
Signed-off-by: Sergey Isakov <isakov-sl@bk.ru>
60 lines
1.3 KiB
C
60 lines
1.3 KiB
C
/** @file
|
|
Copyright (C) 2019, vit9696. All rights reserved.
|
|
|
|
All rights reserved.
|
|
|
|
This program and the accompanying materials
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
**/
|
|
|
|
#ifndef OC_RNG_LIB_H
|
|
#define OC_RNG_LIB_H
|
|
|
|
#include <Library/RngLib.h>
|
|
|
|
/**
|
|
Generates a 16-bit pseudo random number.
|
|
This generator is still guaranteed to be cryptographically secure
|
|
by the use of CPRNG with entropy.
|
|
|
|
@retval 16-bit pseudo random number.
|
|
**/
|
|
UINT16
|
|
EFIAPI
|
|
GetPseudoRandomNumber16 (
|
|
VOID
|
|
);
|
|
|
|
/**
|
|
Generates a 32-bit pseudo random number.
|
|
This generator is still guaranteed to be cryptographically secure
|
|
by the use of CPRNG with entropy.
|
|
|
|
@retval 32-bit pseudo random number.
|
|
**/
|
|
UINT32
|
|
EFIAPI
|
|
GetPseudoRandomNumber32 (
|
|
VOID
|
|
);
|
|
|
|
/**
|
|
Generates a 64-bit pseudo random number.
|
|
This generator is still guaranteed to be cryptographically secure
|
|
by the use of CPRNG with entropy.
|
|
|
|
@retval 64-bit pseudo random number.
|
|
**/
|
|
UINT64
|
|
EFIAPI
|
|
GetPseudoRandomNumber64 (
|
|
VOID
|
|
);
|
|
|
|
#endif // OC_RNG_LIB_H
|