]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Include/Protocol/UserCredential.h
Minor update to fix some typos.
[mirror_edk2.git] / MdePkg / Include / Protocol / UserCredential.h
1 /** @file
2 UEFI 2.2 User Credential Protocol definition.
3
4 Attached to a device handle, this protocol identifies a single means of identifying the user.
5
6 Copyright (c) 2009, Intel Corporation
7 All rights reserved. This program and the accompanying materials
8 are licensed and made available under the terms and conditions of the BSD License
9 which accompanies this distribution. The full text of the license may be found at
10 http://opensource.org/licenses/bsd-license.php
11
12 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14
15 **/
16
17 #ifndef __USER_CREDENTIAL_H__
18 #define __USER_CREDENTIAL_H__
19
20 #define EFI_USER_CREDENTIAL_PROTOCOL_GUID \
21 { \
22 0x71ee5e94, 0x65b9, 0x45d5, { 0x82, 0x1a, 0x3a, 0x4d, 0x86, 0xcf, 0xe6, 0xbe } \
23 }
24
25 typedef VOID *EFI_USER_PROFILE_HANDLE;
26 typedef VOID *EFI_USER_INFO_HANDLE;
27
28 ///
29 /// The attributes of the user profile information.
30 ///
31 typedef UINT16 EFI_USER_INFO_ATTRIBS;
32 #define EFI_USER_INFO_STORAGE 0x000F
33 #define EFI_USER_INFO_STORAGE_VOLATILE 0x0000
34 #define EFI_USER_INFO_STORAGE_CREDENTIAL_NV 0x0001
35 #define EFI_USER_INFO_STORAGE_PLATFORM_NV 0x0002
36
37 #define EFI_USER_INFO_ACCESS 0x0070
38 #define EFI_USER_INFO_PUBLIC 0x0010
39 #define EFI_USER_INFO_PRIVATE 0x0020
40 #define EFI_USER_INFO_PROTECTED 0x0030
41 #define EFI_USER_INFO_EXCLUSIVE 0x0080
42
43 ///
44 /// User information structure
45 ///
46 typedef struct {
47 ///
48 /// The user credential identifier associated with this user information or else Nil if the
49 /// information is not associated with any specific credential.
50 ///
51 EFI_GUID Credential;
52 ///
53 /// The type of user information.
54 ///
55 UINT8 InfoType;
56 ///
57 /// Must be set to 0.
58 ///
59 UINT8 Reserved1;
60 ///
61 /// The attributes of the user profile information.
62 ///
63 EFI_USER_INFO_ATTRIBS InfoAttribs;
64 ///
65 /// The size of the user information, in bytes, including this header.
66 ///
67 UINT32 InfoSize;
68 } EFI_USER_INFO;
69
70 ///
71 /// User credential class GUIDs
72 ///
73 #define EFI_USER_CREDENTIAL_CLASS_UNKNOWN \
74 { 0x5cf32e68, 0x7660, 0x449b, { 0x80, 0xe6, 0x7e, 0xa3, 0x6e, 0x3, 0xf6, 0xa8 } }
75 #define EFI_USER_CREDENTIAL_CLASS_PASSWORD \
76 { 0xf8e5058c, 0xccb6, 0x4714, { 0xb2, 0x20, 0x3f, 0x7e, 0x3a, 0x64, 0xb, 0xd1 } }
77 #define EFI_USER_CREDENTIAL_CLASS_SMART_CARD \
78 { 0x5f03ba33, 0x8c6b, 0x4c24, { 0xaa, 0x2e, 0x14, 0xa2, 0x65, 0x7b, 0xd4, 0x54 } }
79 #define EFI_USER_CREDENTIAL_CLASS_FINGERPRINT \
80 { 0x32cba21f, 0xf308, 0x4cbc, { 0x9a, 0xb5, 0xf5, 0xa3, 0x69, 0x9f, 0x4, 0x4a } }
81 #define EFI_USER_CREDENTIAL_CLASS_HANDPRINT \
82 { 0x5917ef16, 0xf723, 0x4bb9, { 0xa6, 0x4b, 0xd8, 0xc5, 0x32, 0xf4, 0xd8, 0xb5 } }
83 #define EFI_USER_CREDENTIAL_CLASS_SECURE_CARD \
84 { 0x8a6b4a83, 0x42fe, 0x45d2, { 0xa2, 0xef, 0x46, 0xf0, 0x6c, 0x7d, 0x98, 0x52 } }
85
86 typedef UINT64 EFI_CREDENTIAL_CAPABILITIES;
87 #define EFI_CREDENTIAL_CAPABILITIES_ENROLL 0x0000000000000001
88
89 ///
90 /// Credential logon flags
91 ///
92 typedef UINT32 EFI_CREDENTIAL_LOGON_FLAGS;
93 #define EFI_CREDENTIAL_LOGON_FLAG_AUTO 0x00000001
94 #define EFI_CREDENTIAL_LOGON_FLAG_DEFAULT 0x00000002
95
96 ///
97 /// User information record types
98 ///
99
100 ///
101 /// No information.
102 ///
103 #define EFI_USER_INFO_EMPTY_RECORD 0x00
104 ///
105 /// Provide the user's name for the enrolled user.
106 ///
107 #define EFI_USER_INFO_NAME_RECORD 0x01
108 typedef CHAR16 *EFI_USER_INFO_NAME;
109 ///
110 /// Provides the date and time when the user profile was created.
111 ///
112 #define EFI_USER_INFO_CREATE_DATE_RECORD 0x02
113 typedef EFI_TIME EFI_USER_INFO_CREATE_DATE;
114 ///
115 /// Provides the date and time when the user profile was selected.
116 ///
117 #define EFI_USER_INFO_USAGE_DATE_RECORD 0x03
118 typedef EFI_TIME EFI_USER_INFO_USAGE_DATE;
119 ///
120 /// Provides the number of times that the user profile has been selected.
121 ///
122 #define EFI_USER_INFO_USAGE_COUNT_RECORD 0x04
123 typedef UINT64 EFI_USER_INFO_USAGE_COUNT;
124 ///
125 /// Provides a unique non-volatile user identifier for each enrolled user.
126 ///
127 #define EFI_USER_INFO_IDENTIFIER_RECORD 0x05
128 typedef UINT8 EFI_USER_INFO_IDENTIFIER[16];
129 ///
130 /// Specifies the type of a particular credential associated with the user profile.
131 ///
132 #define EFI_USER_INFO_CREDENTIAL_TYPE_RECORD 0x06
133 typedef EFI_GUID EFI_USER_INFO_CREDENTIAL_TYPE;
134 ///
135 /// Specifies the user-readable name of a particular credential type.
136 ///
137 #define EFI_USER_INFO_CREDENTIAL_TYPE_NAME_RECORD 0x07
138 typedef CHAR16 *EFI_USER_INFO_CREDENTIAL_TYPE_NAME;
139 ///
140 /// Specifies the credential provider.
141 ///
142 #define EFI_USER_INFO_CREDENTIAL_PROVIDER_RECORD 0x08
143 typedef EFI_GUID EFI_USER_INFO_CREDENTIAL_PROVIDER;
144 ///
145 /// Specifies the user-readable name of a particular credential's provider.
146 ///
147 #define EFI_USER_INFO_CREDENTIAL_PROVIDER_NAME_RECORD 0x09
148 typedef CHAR16 *EFI_USER_INFO_CREDENTIAL_PROVIDER_NAME;
149 ///
150 /// Provides PKCS#11 credential information from a smart card.
151 ///
152 #define EFI_USER_INFO_PKCS11_RECORD 0x0A
153 ///
154 /// Provides standard biometric information in the format specified by the ISO 19785 (Common
155 /// Biometric Exchange Formats Framework) specification.
156 ///
157 #define EFI_USER_INFO_CBEFF_RECORD 0x0B
158 typedef VOID *EFI_USER_INFO_CBEFF;
159 ///
160 /// Indicates how close of a match the fingerprint must be in order to be considered a match.
161 ///
162 #define EFI_USER_INFO_FAR_RECORD 0x0C
163 typedef UINT8 EFI_USER_INFO_FAR;
164 ///
165 /// Indicates how many attempts the user has to with a particular credential before the system prevents
166 /// further attempts.
167 ///
168 #define EFI_USER_INFO_RETRY_RECORD 0x0D
169 typedef UINT8 EFI_USER_INFO_RETRY;
170 ///
171 /// Provides the user's pre-OS access rights.
172 ///
173 #define EFI_USER_INFO_ACCESS_POLICY_RECORD 0x0E
174
175 typedef struct {
176 UINT32 Type; ///< Specifies the type of user access control.
177 UINT32 Size; ///< Specifies the size of the user access control record, in bytes, including this header.
178 } EFI_USER_INFO_ACCESS_CONTROL;
179
180 typedef EFI_USER_INFO_ACCESS_CONTROL EFI_USER_INFO_ACCESS_POLICY;
181
182 ///
183 /// User Information access types
184 ///
185
186 ///
187 /// Forbids the user from booting or loading executables from the specified device path or any child
188 /// device paths.
189 ///
190 #define EFI_USER_INFO_ACCESS_FORBID_LOAD 0x00000001
191 ///
192 ///
193 /// Permits the user from booting or loading executables from the specified device path or any child
194 /// device paths.
195 ///
196 #define EFI_USER_INFO_ACCESS_PERMIT_LOAD 0x00000002
197 ///
198 /// Presence of this record indicates that a user can update enrollment information.
199 ///
200 #define EFI_USER_INFO_ACCESS_ENROLL_SELF 0x00000003
201 ///
202 /// Presence of this record indicates that a user can enroll new users.
203 ///
204 #define EFI_USER_INFO_ACCESS_ENROLL_OTHERS 0x00000004
205 ///
206 /// Presence of this record indicates that a user can update the user information of any user.
207 ///
208 #define EFI_USER_INFO_ACCESS_MANAGE 0x00000005
209 ///
210 /// Describes permissions usable when configuring the platform.
211 ///
212 #define EFI_USER_INFO_ACCESS_SETUP 0x00000006
213 ///
214 /// Standard GUIDs for access to configure the platform.
215 ///
216 #define EFI_USER_INFO_ACCESS_SETUP_ADMIN_GUID \
217 { 0x85b75607, 0xf7ce, 0x471e, { 0xb7, 0xe4, 0x2a, 0xea, 0x5f, 0x72, 0x32, 0xee } }
218 #define EFI_USER_INFO_ACCESS_SETUP_NORMAL_GUID \
219 { 0x1db29ae0, 0x9dcb, 0x43bc, { 0x8d, 0x87, 0x5d, 0xa1, 0x49, 0x64, 0xdd, 0xe2 } }
220 #define EFI_USER_INFO_ACCESS_SETUP_RESTRICTED_GUID \
221 { 0xbdb38125, 0x4d63, 0x49f4, { 0x82, 0x12, 0x61, 0xcf, 0x5a, 0x19, 0xa, 0xf8 } }
222
223 ///
224 /// Forbids UEFI drivers from being started from the specified device path(s) or any child device paths.
225 ///
226 #define EFI_USER_INFO_ACCESS_FORBID_CONNECT 0x00000007
227 ///
228 /// Permits UEFI drivers to be started on the specified device path(s) or any child device paths.
229 ///
230 #define EFI_USER_INFO_ACCESS_PERMIT_CONNECT 0x00000008
231 ///
232 /// Modifies the boot order.
233 ///
234 #define EFI_USER_INFO_ACCESS_BOOT_ORDER 0x00000009
235 typedef UINT32 EFI_USER_INFO_ACCESS_BOOT_ORDER_HDR;
236
237 #define EFI_USER_INFO_ACCESS_BOOT_ORDER_MASK 0x0000000F
238 ///
239 /// Insert new boot options at the beginning of the boot order.
240 ///
241 #define EFI_USER_INFO_ACCESS_BOOT_ORDER_INSERT 0x00000000
242 ///
243 /// Append new boot options to the end of the boot order.
244 ///
245 #define EFI_USER_INFO_ACCESS_BOOT_ORDER_APPEND 0x00000001
246 ///
247 /// Replace the entire boot order.
248 ///
249 #define EFI_USER_INFO_ACCESS_BOOT_ORDER_REPLACE 0x00000002
250 ///
251 /// The Boot Manager will not attempt find a default boot device
252 /// when the default boot order is does not lead to a bootable device.
253 ///
254 #define EFI_USER_INFO_ACCESS_BOOT_ORDER_NODEFAULT 0x00000010
255
256 ///
257 /// Provides the expression which determines which credentials are required to assert user identity.
258 ///
259 #define EFI_USER_INFO_IDENTITY_POLICY_RECORD 0x0F
260
261 typedef struct {
262 UINT32 Type; ///< Specifies either an operator or a data item.
263 UINT32 Length; ///< The length of this block, in bytes, including this header.
264 } EFI_USER_INFO_IDENTITY_POLICY;
265
266 ///
267 /// User identity policy expression operators.
268 ///
269 #define EFI_USER_INFO_IDENTITY_FALSE 0x00
270 #define EFI_USER_INFO_IDENTITY_TRUE 0x01
271 #define EFI_USER_INFO_IDENTITY_CREDENTIAL_TYPE 0x02
272 #define EFI_USER_INFO_IDENTITY_CREDENTIAL_PROVIDER 0x03
273 #define EFI_USER_INFO_IDENTITY_NOT 0x10
274 #define EFI_USER_INFO_IDENTITY_AND 0x11
275 #define EFI_USER_INFO_IDENTITY_OR 0x12
276
277 ///
278 /// Provides placeholder for additional user profile information identified by a GUID.
279 ///
280 #define EFI_USER_INFO_GUID_RECORD 0xFF
281 typedef EFI_GUID EFI_USER_INFO_GUID;
282
283 ///
284 /// User information table
285 /// A collection of EFI_USER_INFO records, prefixed with this header.
286 ///
287 typedef struct {
288 UINT64 Size; ///< Total size of the user information table, in bytes.
289 } EFI_USER_INFO_TABLE;
290
291 typedef struct _EFI_USER_CREDENTIAL_PROTOCOL EFI_USER_CREDENTIAL_PROTOCOL;
292
293 /**
294 Enroll a user on a credential provider.
295
296 This function enrolls a user profile using this credential provider. If a user profile is successfully
297 enrolled, it calls the User Manager Protocol function Notify() to notify the user manager driver
298 that credential information has changed.
299
300 @param[in] This Points to this instance of the EFI_USER_CREDENTIAL_PROTOCOL.
301 @param[in] User The user profile to enroll.
302
303 @retval EFI_SUCCESS User profile was successfully enrolled.
304 @retval EFI_ACCESS_DENIED Current user profile does not permit enrollment on the user profile
305 handle. Either the user profile cannot enroll on any user profile or
306 cannot enroll on a user profile other than the current user profile.
307 @retval EFI_UNSUPPORTED This credential provider does not support enrollment in the pre-OS.
308 @retval EFI_DEVICE_ERROR The new credential could not be created because of a device error.
309 @retval EFI_INVALID_PARAMETER User does not refer to a valid user profile handle.
310 **/
311 typedef
312 EFI_STATUS
313 (EFIAPI *EFI_CREDENTIAL_ENROLL)(
314 IN CONST EFI_USER_CREDENTIAL_PROTOCOL *This,
315 IN EFI_USER_PROFILE_HANDLE User
316 );
317
318 /**
319 Returns the user interface information used during user identification.
320
321 This function returns information about the form used when interacting with the user during user
322 identification. The form is the first enabled form in the form-set class
323 EFI_HII_USER_CREDENTIAL_FORMSET_GUID installed on the HII handle HiiHandle. If
324 the user credential provider does not require a form to identify the user, then this function should
325 return EFI_NOT_FOUND.
326
327 @param[in] This Points to this instance of the EFI_USER_CREDENTIAL_PROTOCOL.
328 @param[out] Hii On return, holds the HII database handle.
329 @param[out] FormSetId On return, holds the identifier of the form set which contains
330 the form used during user identification.
331 @param[out] FormId On return, holds the identifier of the form used during user identification.
332
333 @retval EFI_SUCCESS Form returned successfully.
334 @retval EFI_NOT_FOUND Form not returned.
335 **/
336 typedef
337 EFI_STATUS
338 (EFIAPI *EFI_CREDENTIAL_FORM)(
339 IN CONST EFI_USER_CREDENTIAL_PROTOCOL *This,
340 OUT EFI_HII_HANDLE *Hii,
341 OUT EFI_GUID *FormSetId,
342 OUT EFI_FORM_ID *FormId
343 );
344
345 /**
346 Returns bitmap used to describe the credential provider type.
347
348 This optional function returns a bitmap which is less than or equal to the number of pixels specified
349 by Width and Height. If no such bitmap exists, then EFI_NOT_FOUND is returned.
350
351 @param[in] This Points to this instance of the EFI_USER_CREDENTIAL_PROTOCOL.
352 @param[in,out] Width On entry, points to the desired bitmap width. If NULL then no bitmap information will
353 be returned. On exit, points to the width of the bitmap returned.
354 @param[in,out] Height On entry, points to the desired bitmap height. If NULL then no bitmap information will
355 be returned. On exit, points to the height of the bitmap returned
356 @param[out] Hii On return, holds the HII database handle.
357 @param[out] Image On return, holds the HII image identifier.
358
359 @retval EFI_SUCCESS Image identifier returned successfully.
360 @retval EFI_NOT_FOUND Image identifier not returned.
361 **/
362 typedef
363 EFI_STATUS
364 (EFIAPI *EFI_CREDENTIAL_TILE)(
365 IN CONST EFI_USER_CREDENTIAL_PROTOCOL *This,
366 IN OUT UINTN *Width,
367 IN OUT UINTN *Height,
368 OUT EFI_HII_HANDLE *Hii,
369 OUT EFI_IMAGE_ID *Image
370 );
371
372 /**
373 Returns string used to describe the credential provider type.
374
375 This function returns a string which describes the credential provider. If no such string exists, then
376 EFI_NOT_FOUND is returned.
377
378 @param[in] This Points to this instance of the EFI_USER_CREDENTIAL_PROTOCOL.
379 @param[out] Hii On return, holds the HII database handle.
380 @param[out] String On return, holds the HII string identifier.
381
382 @retval EFI_SUCCESS String identifier returned successfully.
383 @retval EFI_NOT_FOUND String identifier not returned.
384 **/
385 typedef
386 EFI_STATUS
387 (EFIAPI *EFI_CREDENTIAL_TITLE)(
388 IN CONST EFI_USER_CREDENTIAL_PROTOCOL *This,
389 OUT EFI_HII_HANDLE *Hii,
390 OUT EFI_STRING_ID *String
391 );
392
393 /**
394 Return the user identifier associated with the currently authenticated user.
395
396 This function returns the user identifier of the user authenticated by this credential provider. This
397 function is called after the credential-related information has been submitted on a form OR after a
398 call to Default() has returned that this credential is ready to log on.
399
400 @param[in] This Points to this instance of the EFI_USER_CREDENTIAL_PROTOCOL.
401 @param[in] User The user profile handle of the user profile currently being considered by the user
402 identity manager. If NULL, then no user profile is currently under consideration.
403 @param[out] Identifier On return, points to the user identifier.
404
405 @retval EFI_SUCCESS User identifier returned successfully.
406 @retval EFI_NOT_READY No user identifier can be returned.
407 @retval EFI_ACCESS_DENIED The user has been locked out of this user credential.
408 **/
409 typedef
410 EFI_STATUS
411 (EFIAPI *EFI_CREDENTIAL_USER)(
412 IN CONST EFI_USER_CREDENTIAL_PROTOCOL *This,
413 IN EFI_USER_PROFILE_HANDLE User,
414 OUT EFI_USER_INFO_IDENTIFIER *Identifier
415 );
416
417 /**
418 Indicate that user interface interaction has begun for the specified credential.
419
420 This function is called when a credential provider is selected by the user. If AutoLogon returns
421 FALSE, then the user interface will be constructed by the User Identity Manager.
422
423 @param[in] This Points to this instance of the EFI_USER_CREDENTIAL_PROTOCOL.
424 @param[out] AutoLogon On return, points to the credential provider's capabilities after the credential provider
425 has been selected by the user.
426
427 @retval EFI_SUCCESS Credential provider successfully selected.
428 **/
429 typedef
430 EFI_STATUS
431 (EFIAPI *EFI_CREDENTIAL_SELECT)(
432 IN CONST EFI_USER_CREDENTIAL_PROTOCOL *This,
433 OUT EFI_CREDENTIAL_LOGON_FLAGS *AutoLogon
434 );
435
436 /**
437 Indicate that user interface interaction has ended for the specified credential.
438
439 This function is called when a credential provider is deselected by the user.
440
441 @param[in] This Points to this instance of the EFI_USER_CREDENTIAL_PROTOCOL.
442
443 @retval EFI_SUCCESS Credential provider successfully deselected.
444 **/
445 typedef
446 EFI_STATUS
447 (EFIAPI *EFI_CREDENTIAL_DESELECT)(
448 IN CONST EFI_USER_CREDENTIAL_PROTOCOL *This
449 );
450
451 /**
452 Return the default logon behavior for this user credential.
453
454 This function reports the default login behavior regarding this credential provider.
455
456 @param[in] This Points to this instance of the EFI_USER_CREDENTIAL_PROTOCOL.
457 @param[out] AutoLogon On return, holds whether the credential provider should be used by default to
458 automatically log on the user.
459
460 @retval EFI_SUCCESS Default information successfully returned.
461 **/
462 typedef
463 EFI_STATUS
464 (EFIAPI *EFI_CREDENTIAL_DEFAULT)(
465 IN CONST EFI_USER_CREDENTIAL_PROTOCOL *This,
466 OUT EFI_CREDENTIAL_LOGON_FLAGS *AutoLogon
467 );
468
469 /**
470 Return information attached to the credential provider.
471
472 This function returns user information.
473
474 @param[in] This Points to this instance of the EFI_USER_CREDENTIAL_PROTOCOL.
475 @param[in] UserInfo Handle of the user information data record.
476 @param[out] Info On entry, points to a buffer of at least *InfoSize bytes. On exit, holds the user
477 information. If the buffer is too small to hold the information, then
478 EFI_BUFFER_TOO_SMALL is returned and InfoSize is updated to contain the
479 number of bytes actually required.
480 @param[in,out] InfoSize On entry, points to the size of Info. On return, points to the size of the user
481 information.
482
483 @retval EFI_SUCCESS Information returned successfully.
484 @retval EFI_ACCESS_DENIED The information about the specified user cannot be accessed by the
485 current user.
486 @retval EFI_BUFFER_TOO_SMALL The size specified by InfoSize is too small to hold all of the user
487 information. The size required is returned in *InfoSize.
488 **/
489 typedef
490 EFI_STATUS
491 (EFIAPI *EFI_CREDENTIAL_GET_INFO)(
492 IN CONST EFI_USER_CREDENTIAL_PROTOCOL *This,
493 IN EFI_USER_INFO_HANDLE UserInfo,
494 OUT EFI_USER_INFO *Info,
495 IN OUT UINTN *InfoSize
496 );
497
498 /**
499 Enumerate all of the enrolled users on the platform.
500
501 This function returns the next user information record. To retrieve the first user information record
502 handle, point UserInfo at a NULL. Each subsequent call will retrieve another user information
503 record handle until there are no more, at which point UserInfo will point to NULL.
504
505 @param[in] This Points to this instance of the EFI_USER_CREDENTIAL_PROTOCOL.
506 @param[in,out] UserInfo On entry, points to the previous user information handle or NULL to start
507 enumeration. On exit, points to the next user information handle or NULL if there is
508 no more user information.
509
510 @retval EFI_SUCCESS User information returned.
511 @retval EFI_NOT_FOUND No more user information found.
512 **/
513 typedef
514 EFI_STATUS
515 (EFIAPI *EFI_CREDENTIAL_GET_NEXT_INFO)(
516 IN CONST EFI_USER_CREDENTIAL_PROTOCOL *This,
517 IN OUT EFI_USER_INFO_HANDLE *UserInfo
518 );
519
520 ///
521 /// This protocol provides support for a single class of credentials
522 ///
523 struct _EFI_USER_CREDENTIAL_PROTOCOL {
524 EFI_GUID Identifier; ///< Uniquely identifies this credential provider.
525 EFI_GUID Type; ///< Identifies this class of User Credential Provider.
526 EFI_CREDENTIAL_ENROLL Enroll;
527 EFI_CREDENTIAL_FORM Form;
528 EFI_CREDENTIAL_TILE Tile;
529 EFI_CREDENTIAL_TITLE Title;
530 EFI_CREDENTIAL_USER User;
531 EFI_CREDENTIAL_SELECT Select;
532 EFI_CREDENTIAL_DESELECT Deselect;
533 EFI_CREDENTIAL_DEFAULT Default;
534 EFI_CREDENTIAL_GET_INFO GetInfo;
535 EFI_CREDENTIAL_GET_NEXT_INFO GetNextInfo;
536 EFI_CREDENTIAL_CAPABILITIES Capabilities;
537 };
538
539 extern EFI_GUID gEfiUserCredentialProtocolGuid;
540
541 #endif