]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Protocol/Rng.h
MdePkg/Include/Protocol/Tls.h: pack structures from the TLS RFC
[mirror_edk2.git] / MdePkg / Include / Protocol / Rng.h
CommitLineData
3aa8dc6c
LQ
1/** @file\r
2 EFI_RNG_PROTOCOL as defined in UEFI 2.4.\r
3 The UEFI Random Number Generator Protocol is used to provide random bits for use \r
4 in applications, or entropy for seeding other random number generators.\r
5\r
6Copyright (c) 2013, Intel Corporation. All rights reserved.<BR>\r
7This program and the accompanying materials are licensed and made available under\r
8the terms and conditions of the BSD License that accompanies this distribution.\r
9The full text of the license may be found at\r
10http://opensource.org/licenses/bsd-license.php.\r
11\r
12THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
13WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
14\r
15**/\r
16\r
17#ifndef __EFI_RNG_PROTOCOL_H__\r
18#define __EFI_RNG_PROTOCOL_H__\r
19\r
20///\r
21/// Global ID for the Random Number Generator Protocol\r
22///\r
23#define EFI_RNG_PROTOCOL_GUID \\r
24 { \\r
25 0x3152bca5, 0xeade, 0x433d, {0x86, 0x2e, 0xc0, 0x1c, 0xdc, 0x29, 0x1f, 0x44 } \\r
26 }\r
27\r
28typedef struct _EFI_RNG_PROTOCOL EFI_RNG_PROTOCOL;\r
29\r
30///\r
31/// A selection of EFI_RNG_PROTOCOL algorithms.\r
32/// The algorithms listed are optional, not meant to be exhaustive and be argmented by \r
33/// vendors or other industry standards.\r
34///\r
35\r
36typedef EFI_GUID EFI_RNG_ALGORITHM;\r
37\r
38///\r
39/// The algorithms corresponds to SP800-90 as defined in\r
40/// NIST SP 800-90, "Recommendation for Random Number Generation Using Deterministic Random\r
41/// Bit Generators", March 2007.\r
42///\r
43#define EFI_RNG_ALGORITHM_SP800_90_HASH_256_GUID \\r
44 { \\r
45 0xa7af67cb, 0x603b, 0x4d42, {0xba, 0x21, 0x70, 0xbf, 0xb6, 0x29, 0x3f, 0x96 } \\r
46 }\r
47#define EFI_RNG_ALGORITHM_SP800_90_HMAC_256_GUID \\r
48 { \\r
49 0xc5149b43, 0xae85, 0x4f53, {0x99, 0x82, 0xb9, 0x43, 0x35, 0xd3, 0xa9, 0xe7 } \\r
50 }\r
51#define EFI_RNG_ALGORITHM_SP800_90_CTR_256_GUID \\r
52 { \\r
53 0x44f0de6e, 0x4d8c, 0x4045, {0xa8, 0xc7, 0x4d, 0xd1, 0x68, 0x85, 0x6b, 0x9e } \\r
54 }\r
55///\r
56/// The algorithms correspond to X9.31 as defined in\r
57/// NIST, "Recommended Random Number Generator Based on ANSI X9.31 Appendix A.2.4 Using\r
58/// the 3-Key Triple DES and AES Algorithm", January 2005.\r
59///\r
60#define EFI_RNG_ALGORITHM_X9_31_3DES_GUID \\r
61 { \\r
62 0x63c4785a, 0xca34, 0x4012, {0xa3, 0xc8, 0x0b, 0x6a, 0x32, 0x4f, 0x55, 0x46 } \\r
63 }\r
64#define EFI_RNG_ALGORITHM_X9_31_AES_GUID \\r
65 { \\r
66 0xacd03321, 0x777e, 0x4d3d, {0xb1, 0xc8, 0x20, 0xcf, 0xd8, 0x88, 0x20, 0xc9 } \\r
67 }\r
68///\r
69/// The "raw" algorithm, when supported, is intended to provide entropy directly from\r
70/// the source, without it going through some deterministic random bit generator.\r
71///\r
72#define EFI_RNG_ALGORITHM_RAW \\r
73 { \\r
74 0xe43176d7, 0xb6e8, 0x4827, {0xb7, 0x84, 0x7f, 0xfd, 0xc4, 0xb6, 0x85, 0x61 } \\r
75 }\r
76\r
77/**\r
78 Returns information about the random number generation implementation.\r
79\r
80 @param[in] This A pointer to the EFI_RNG_PROTOCOL instance.\r
81 @param[in,out] RNGAlgorithmListSize On input, the size in bytes of RNGAlgorithmList. \r
82 On output with a return code of EFI_SUCCESS, the size\r
83 in bytes of the data returned in RNGAlgorithmList. On output\r
84 with a return code of EFI_BUFFER_TOO_SMALL,\r
85 the size of RNGAlgorithmList required to obtain the list.\r
86 @param[out] RNGAlgorithmList A caller-allocated memory buffer filled by the driver\r
87 with one EFI_RNG_ALGORITHM element for each supported\r
88 RNG algorithm. The list must not change across multiple\r
89 calls to the same driver. The first algorithm in the list\r
90 is the default algorithm for the driver.\r
91\r
92 @retval EFI_SUCCESS The RNG algorithm list was returned successfully.\r
93 @retval EFI_UNSUPPORTED The services is not supported by this driver.\r
94 @retval EFI_DEVICE_ERROR The list of algorithms could not be retrieved due to a\r
95 hardware or firmware error.\r
96 @retval EFI_INVALID_PARAMETER One or more of the parameters are incorrect.\r
97 @retval EFI_BUFFER_TOO_SMALL The buffer RNGAlgorithmList is too small to hold the result.\r
98\r
99**/\r
100typedef\r
101EFI_STATUS\r
102(EFIAPI *EFI_RNG_GET_INFO) (\r
103 IN EFI_RNG_PROTOCOL *This,\r
104 IN OUT UINTN *RNGAlgorithmListSize,\r
105 OUT EFI_RNG_ALGORITHM *RNGAlgorithmList\r
106 );\r
107\r
108/**\r
109 Produces and returns an RNG value using either the default or specified RNG algorithm.\r
110\r
111 @param[in] This A pointer to the EFI_RNG_PROTOCOL instance.\r
112 @param[in] RNGAlgorithm A pointer to the EFI_RNG_ALGORITHM that identifies the RNG\r
113 algorithm to use. May be NULL in which case the function will\r
114 use its default RNG algorithm.\r
115 @param[in] RNGValueLength The length in bytes of the memory buffer pointed to by\r
116 RNGValue. The driver shall return exactly this numbers of bytes.\r
117 @param[out] RNGValue A caller-allocated memory buffer filled by the driver with the\r
118 resulting RNG value.\r
119\r
120 @retval EFI_SUCCESS The RNG value was returned successfully.\r
121 @retval EFI_UNSUPPORTED The algorithm specified by RNGAlgorithm is not supported by\r
122 this driver.\r
123 @retval EFI_DEVICE_ERROR An RNG value could not be retrieved due to a hardware or\r
124 firmware error.\r
125 @retval EFI_NOT_READY There is not enough random data available to satisfy the length\r
126 requested by RNGValueLength.\r
127 @retval EFI_INVALID_PARAMETER RNGValue is NULL or RNGValueLength is zero.\r
128\r
129**/\r
130typedef\r
131EFI_STATUS\r
132(EFIAPI *EFI_RNG_GET_RNG) (\r
133 IN EFI_RNG_PROTOCOL *This,\r
134 IN EFI_RNG_ALGORITHM *RNGAlgorithm, OPTIONAL\r
135 IN UINTN RNGValueLength,\r
136 OUT UINT8 *RNGValue\r
137 );\r
138\r
139///\r
140/// The Random Number Generator (RNG) protocol provides random bits for use in \r
141/// applications, or entropy for seeding other random number generators.\r
142///\r
143struct _EFI_RNG_PROTOCOL {\r
144 EFI_RNG_GET_INFO GetInfo;\r
145 EFI_RNG_GET_RNG GetRNG;\r
146};\r
147\r
148extern EFI_GUID gEfiRngProtocolGuid;\r
149extern EFI_GUID gEfiRngAlgorithmSp80090Hash256Guid;\r
150extern EFI_GUID gEfiRngAlgorithmSp80090Hmac256Guid;\r
151extern EFI_GUID gEfiRngAlgorithmSp80090Ctr256Guid;\r
152extern EFI_GUID gEfiRngAlgorithmX9313DesGuid;\r
153extern EFI_GUID gEfiRngAlgorithmX931AesGuid;\r
154extern EFI_GUID gEfiRngAlgorithmRaw;\r
155\r
156#endif\r