VirtualBox

source: vbox/trunk/src/VBox/Devices/EFI/Firmware/OvmfPkg/Library/BlobVerifierLibNull/BlobVerifierNull.c@ 107675

最後變更 在這個檔案從107675是 99404,由 vboxsync 提交於 2 年 前

Devices/EFI/FirmwareNew: Update to edk2-stable202302 and make it build, bugref:4643

  • 屬性 svn:eol-style 設為 native
檔案大小: 796 位元組
 
1/** @file
2
3 Null implementation of the blob verifier library.
4
5 Copyright (C) 2021, IBM Corporation
6
7 SPDX-License-Identifier: BSD-2-Clause-Patent
8**/
9
10#include <Library/BaseLib.h>
11#include <Library/BlobVerifierLib.h>
12
13/**
14 Verify blob from an external source.
15
16 @param[in] BlobName The name of the blob
17 @param[in] Buf The data of the blob
18 @param[in] BufSize The size of the blob in bytes
19
20 @retval EFI_SUCCESS The blob was verified successfully.
21 @retval EFI_ACCESS_DENIED The blob could not be verified, and therefore
22 should be considered non-secure.
23**/
24EFI_STATUS
25EFIAPI
26VerifyBlob (
27 IN CONST CHAR16 *BlobName,
28 IN CONST VOID *Buf,
29 IN UINT32 BufSize
30 )
31{
32 return EFI_SUCCESS;
33}
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette