Last change
on this file since 108794 was 108794, checked in by vboxsync, 2 weeks ago |
Devices/EFI/FirmwareNew: Merge edk2-stable202502 from the vendor branch and make it build for the important platforms, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
618 bytes
|
Line | |
---|
1 | /** @file
|
---|
2 | The Random Number Generator (RNG) PPI is used to provide random bits for use
|
---|
3 | in PEIMs, or entropy for seeding other random number generators. The PPI was
|
---|
4 | introduced in the PI 1.9 Specification.
|
---|
5 |
|
---|
6 | Copyright (c) Microsoft Corporation.
|
---|
7 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
8 | **/
|
---|
9 |
|
---|
10 | #ifndef RNG_PPI_H_
|
---|
11 | #define RNG_PPI_H_
|
---|
12 |
|
---|
13 | #include <Guid/Rng.h>
|
---|
14 |
|
---|
15 | ///
|
---|
16 | /// Global ID for the Random Number Generator PPI
|
---|
17 | ///
|
---|
18 | #define RNG_PPI_GUID \
|
---|
19 | { \
|
---|
20 | 0xeaed0a7e, 0x1a70, 0x4c2b, { 0x85, 0x58, 0x37, 0x17, 0x74, 0x56, 0xd8, 0x06 } \
|
---|
21 | }
|
---|
22 |
|
---|
23 | typedef EFI_RNG_INTERFACE RNG_PPI;
|
---|
24 |
|
---|
25 | extern EFI_GUID gEfiRngPpiGuid;
|
---|
26 |
|
---|
27 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.