]> git.proxmox.com Git - mirror_edk2.git/blob - SecurityPkg/RandomNumberGenerator/RngDxe/RngDxe.inf
12cb2fc3eef8efc9721479d619ab7ec482b7c417
[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 RdRand.h
40 AesCore.c
41 AesCore.h
42
43 [Sources.IA32]
44 IA32/RdRandWord.c
45 IA32/AsmRdRand.asm | MSFT
46 IA32/GccRdRand.c | GCC
47
48 [Sources.X64]
49 X64/RdRandWord.c
50 X64/AsmRdRand.asm | MSFT
51 X64/GccRdRand.c | GCC
52
53 [Packages]
54 MdePkg/MdePkg.dec
55 SecurityPkg/SecurityPkg.dec
56
57 [LibraryClasses]
58 UefiLib
59 UefiBootServicesTableLib
60 BaseLib
61 DebugLib
62 UefiDriverEntryPoint
63 TimerLib
64
65 [Guids]
66 gEfiRngAlgorithmSp80090Hash256Guid
67 gEfiRngAlgorithmSp80090Hmac256Guid
68 gEfiRngAlgorithmSp80090Ctr256Guid
69 gEfiRngAlgorithmX9313DesGuid
70 gEfiRngAlgorithmX931AesGuid
71 gEfiRngAlgorithmRaw
72
73 [Protocols]
74 gEfiRngProtocolGuid ## PRODUCES
75
76 [Depex]
77 TRUE