blob: ec86dfa4ad04fc72cb008cbd68ad491ace7893e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/** @file
This Driver mainly locks password variables.
Copyright (c) 2023, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include <PiDxe.h>
#include "UserAuthenticationVariable.h"
/**
User Authentication Standalone Mm Dxe driver entry point.
@param[in] ImageHandle The image handle.
@param[in] SystemTable The system table.
@retval EFI_SUCCESS The entry point is executed successfully.
@return other Contain some other errors.
**/
EFI_STATUS
EFIAPI
UserAuthenticationStandaloneMmDxeEntry (
IN EFI_HANDLE ImageHandle,
IN EFI_SYSTEM_TABLE *SystemTable
)
{
return LockPasswordVariable ();
}
|