]> git.proxmox.com Git - mirror_edk2.git/blame - SecurityPkg/RandomNumberGenerator/RngDxe/RngDxe.inf
SecurityPkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / SecurityPkg / RandomNumberGenerator / RngDxe / RngDxe.inf
CommitLineData
3aa8dc6c 1## @file\r
60c944c7 2# Produces the UEFI Random Number Generator protocol\r
3aa8dc6c
LQ
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
b3548d32 11# Copyright (c) 2013 - 2018, Intel Corporation. All rights reserved.<BR>\r
3b60842c 12# (C) Copyright 2015 Hewlett Packard Enterprise Development LP<BR>\r
289b714b 13# SPDX-License-Identifier: BSD-2-Clause-Patent\r
3aa8dc6c
LQ
14#\r
15##\r
16\r
17[Defines]\r
18 INF_VERSION = 0x00010005\r
19 BASE_NAME = RngDxe\r
20 FILE_GUID = B981A835-6EE8-4f4c-AE0B-210AA0BFBF01\r
21 MODULE_TYPE = DXE_DRIVER\r
22 VERSION_STRING = 1.0\r
23 ENTRY_POINT = RngDriverEntry\r
60c944c7 24 MODULE_UNI_FILE = RngDxe.uni\r
3aa8dc6c
LQ
25\r
26#\r
27# The following information is for reference only and not required by the build tools.\r
28#\r
29# VALID_ARCHITECTURES = IA32 X64\r
30#\r
31\r
32[Sources.common]\r
33 RngDxe.c\r
34 RdRand.c\r
b6023fb1 35 RdRand.h\r
3aa8dc6c 36 AesCore.c\r
b6023fb1 37 AesCore.h\r
3aa8dc6c 38\r
3aa8dc6c
LQ
39[Packages]\r
40 MdePkg/MdePkg.dec\r
41 SecurityPkg/SecurityPkg.dec\r
42\r
43[LibraryClasses]\r
44 UefiLib\r
45 UefiBootServicesTableLib\r
46 BaseLib\r
b3548d32 47 DebugLib\r
3aa8dc6c
LQ
48 UefiDriverEntryPoint\r
49 TimerLib\r
3b60842c 50 RngLib\r
3aa8dc6c
LQ
51\r
52[Guids]\r
60c944c7
DG
53 gEfiRngAlgorithmSp80090Ctr256Guid ## SOMETIMES_PRODUCES ## GUID # Unique ID of the algorithm for RNG\r
54 gEfiRngAlgorithmRaw ## SOMETIMES_PRODUCES ## GUID # Unique ID of the algorithm for RNG\r
3aa8dc6c
LQ
55\r
56[Protocols]\r
60c944c7 57 gEfiRngProtocolGuid ## PRODUCES\r
3aa8dc6c
LQ
58\r
59[Depex]\r
60 TRUE\r
9a70350f
AF
61\r
62[BuildOptions]\r
63 XCODE:*_*_*_CC_FLAGS = -mmmx -msse\r
60c944c7
DG
64\r
65[UserExtensions.TianoCore."ExtraFiles"]\r
3b60842c 66 RngDxeExtra.uni\r