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