Last change
on this file since 105670 was 105670, checked in by vboxsync, 4 months ago |
Devices/EFI/FirmwareNew: Merge edk2-stable-202405 and make it build on aarch64, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1.1 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # Instance of RNG (Random Number Generator) Library.
|
---|
3 | #
|
---|
4 | # BaseRng Library that uses the TimerLib to provide reasonably random numbers.
|
---|
5 | # Do NOT use this on a production system as this uses the system performance
|
---|
6 | # counter rather than a true source of random in addition to having a weak
|
---|
7 | # random algorithm. This is provided primarily as a source of entropy for
|
---|
8 | # OpenSSL for platforms that do not have a good built in RngLib as this
|
---|
9 | # emulates what was done before (though it isn't perfect).
|
---|
10 | #
|
---|
11 | # Copyright (c) Microsoft Corporation. All rights reserved.<BR>
|
---|
12 | #
|
---|
13 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
14 | #
|
---|
15 | #
|
---|
16 | ##
|
---|
17 |
|
---|
18 | [Defines]
|
---|
19 | INF_VERSION = 1.27
|
---|
20 | BASE_NAME = BaseRngLibTimerLib
|
---|
21 | MODULE_UNI_FILE = BaseRngLibTimerLib.uni
|
---|
22 | FILE_GUID = B3E66B05-D218-4B9A-AC33-EF0F83D6A513
|
---|
23 | MODULE_TYPE = BASE
|
---|
24 | VERSION_STRING = 1.0
|
---|
25 | LIBRARY_CLASS = RngLib
|
---|
26 |
|
---|
27 | [Sources]
|
---|
28 | RngLibTimer.c
|
---|
29 |
|
---|
30 | [Packages]
|
---|
31 | MdePkg/MdePkg.dec
|
---|
32 | MdeModulePkg/MdeModulePkg.dec
|
---|
33 |
|
---|
34 | [Guids]
|
---|
35 | gEdkiiRngAlgorithmUnSafe
|
---|
36 |
|
---|
37 | [LibraryClasses]
|
---|
38 | BaseLib
|
---|
39 | DebugLib
|
---|
40 | TimerLib
|
---|
Note:
See
TracBrowser
for help on using the repository browser.