TianoCore EDK2 master
Loading...
Searching...
No Matches
CryptRandNull.c
Go to the documentation of this file.
1
10#include "InternalCryptLib.h"
11
25BOOLEAN
26EFIAPI
28 IN CONST UINT8 *Seed OPTIONAL,
29 IN UINTN SeedSize
30 )
31{
32 ASSERT (FALSE);
33 return FALSE;
34}
35
47BOOLEAN
48EFIAPI
50 OUT UINT8 *Output,
51 IN UINTN Size
52 )
53{
54 ASSERT (FALSE);
55 return FALSE;
56}
UINT64 UINTN
#define CONST
Definition: Base.h:259
#define FALSE
Definition: Base.h:307
#define IN
Definition: Base.h:279
#define OUT
Definition: Base.h:284
BOOLEAN EFIAPI RandomBytes(OUT UINT8 *Output, IN UINTN Size)
Definition: CryptRandNull.c:49
BOOLEAN EFIAPI RandomSeed(IN CONST UINT8 *Seed OPTIONAL, IN UINTN SeedSize)
Definition: CryptRandNull.c:27