2 # Provides a USB credential provider implementation
\r
4 # This module reads a token from a token file that is saved in the root
\r
5 # folder of a USB stick. The token file name can be specified by the PCD
\r
6 # PcdFixedUsbCredentialProviderTokenFileName.
\r
8 # Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR>
\r
9 # This program and the accompanying materials
\r
10 # are licensed and made available under the terms and conditions of the BSD License
\r
11 # which accompanies this distribution. The full text of the license may be found at
\r
12 # http://opensource.org/licenses/bsd-license.php
\r
13 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
\r
14 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
\r
19 INF_VERSION = 0x00010005
\r
20 BASE_NAME = UsbCredentialProvider
\r
21 MODULE_UNI_FILE = UsbCredentialProvider.uni
\r
22 FILE_GUID = 672A0C68-2BF0-46f9-93C3-C4E7DC0FA555
\r
23 MODULE_TYPE = UEFI_DRIVER
\r
24 VERSION_STRING = 1.0
\r
25 ENTRY_POINT = UsbProviderInit
\r
28 UsbCredentialProvider.c
\r
29 UsbCredentialProvider.h
\r
30 UsbCredentialProviderStrings.uni
\r
34 MdeModulePkg/MdeModulePkg.dec
\r
35 CryptoPkg/CryptoPkg.dec
\r
36 SecurityPkg/SecurityPkg.dec
\r
39 UefiRuntimeServicesTableLib
\r
40 UefiBootServicesTableLib
\r
41 UefiDriverEntryPoint
\r
50 ## PRODUCES ## Variable:L"UsbCredential"
\r
51 ## CONSUMES ## Variable:L"UsbCredential"
\r
53 ## SOMETIMES_CONSUMES ## GUID # The credential provider identifier
\r
54 gUsbCredentialProviderGuid
\r
56 gEfiFileInfoGuid ## SOMETIMES_CONSUMES ## GUID
\r
57 gEfiUserCredentialClassSecureCardGuid ## SOMETIMES_CONSUMES ## GUID
\r
60 gEfiSecurityPkgTokenSpaceGuid.PcdFixedUsbCredentialProviderTokenFileName ## SOMETIMES_CONSUMES
\r
63 gEfiUserCredential2ProtocolGuid ## PRODUCES
\r
64 gEfiUserManagerProtocolGuid ## SOMETIMES_CONSUMES
\r
65 gEfiBlockIoProtocolGuid ## SOMETIMES_CONSUMES
\r
66 gEfiSimpleFileSystemProtocolGuid ## SOMETIMES_CONSUMES
\r
68 [UserExtensions.TianoCore."ExtraFiles"]
\r
69 UsbCredentialProviderExtra.uni
\r