]> git.proxmox.com Git - mirror_edk2.git/blame - SecurityPkg/RandomNumberGenerator/RngDxe/RngDxe.inf
Correct INF file to make module pass ICC compiler.
[mirror_edk2.git] / SecurityPkg / RandomNumberGenerator / RngDxe / RngDxe.inf
CommitLineData
3aa8dc6c
LQ
1## @file\r
2# Module that produces the UEFI Random Number Generator protocol.\r
3#\r
4# This module will leverage Intel Secure Key technology to produce the Random\r
5# Number Generator protocol, which is used to provide high-quality random numbers\r
6# for use in applications, or entropy for seeding other random number generators.\r
7# Refer to http://software.intel.com/en-us/articles/intel-digital-random-number\r
8# -generator-drng-software-implementation-guide/ for more information about Intel\r
9# Secure Key technology.\r
10#\r
11# Copyright (c) 2013, Intel Corporation. All rights reserved.<BR>\r
12# This program and the accompanying materials\r
13# are licensed and made available under the terms and conditions of the BSD License\r
14# which accompanies this distribution. The full text of the license may be found at\r
15# http://opensource.org/licenses/bsd-license.php\r
16#\r
17# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
18# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
19#\r
20##\r
21\r
22[Defines]\r
23 INF_VERSION = 0x00010005\r
24 BASE_NAME = RngDxe\r
25 FILE_GUID = B981A835-6EE8-4f4c-AE0B-210AA0BFBF01\r
26 MODULE_TYPE = DXE_DRIVER\r
27 VERSION_STRING = 1.0\r
28 ENTRY_POINT = RngDriverEntry\r
29\r
30#\r
31# The following information is for reference only and not required by the build tools.\r
32#\r
33# VALID_ARCHITECTURES = IA32 X64\r
34#\r
35\r
36[Sources.common]\r
37 RngDxe.c\r
38 RdRand.c\r
b6023fb1 39 RdRand.h\r
3aa8dc6c 40 AesCore.c\r
b6023fb1 41 AesCore.h\r
3aa8dc6c
LQ
42\r
43[Sources.IA32]\r
44 IA32/RdRandWord.c\r
4db0b65c 45 IA32/AsmRdRand.asm\r
3aa8dc6c
LQ
46 IA32/GccRdRand.c | GCC\r
47\r
48[Sources.X64]\r
49 X64/RdRandWord.c\r
4db0b65c 50 X64/AsmRdRand.asm\r
3aa8dc6c
LQ
51 X64/GccRdRand.c | GCC\r
52\r
53[Packages]\r
54 MdePkg/MdePkg.dec\r
55 SecurityPkg/SecurityPkg.dec\r
56\r
57[LibraryClasses]\r
58 UefiLib\r
59 UefiBootServicesTableLib\r
60 BaseLib\r
61 DebugLib \r
62 UefiDriverEntryPoint\r
63 TimerLib\r
64\r
65[Guids]\r
66 gEfiRngAlgorithmSp80090Hash256Guid\r
67 gEfiRngAlgorithmSp80090Hmac256Guid\r
68 gEfiRngAlgorithmSp80090Ctr256Guid\r
69 gEfiRngAlgorithmX9313DesGuid\r
70 gEfiRngAlgorithmX931AesGuid\r
71 gEfiRngAlgorithmRaw\r
72\r
73[Protocols]\r
74 gEfiRngProtocolGuid ## PRODUCES\r
75\r
76[Depex]\r
77 TRUE\r