diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 16:49:04 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 16:49:04 +0000 |
commit | 16f504a9dca3fe3b70568f67b7d41241ae485288 (patch) | |
tree | c60f36ada0496ba928b7161059ba5ab1ab224f9d /src/VBox/Devices/EFI/Firmware/CryptoPkg/Driver/CryptoDxe.c | |
parent | Initial commit. (diff) | |
download | virtualbox-upstream.tar.xz virtualbox-upstream.zip |
Adding upstream version 7.0.6-dfsg.upstream/7.0.6-dfsgupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/VBox/Devices/EFI/Firmware/CryptoPkg/Driver/CryptoDxe.c')
-rw-r--r-- | src/VBox/Devices/EFI/Firmware/CryptoPkg/Driver/CryptoDxe.c | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/VBox/Devices/EFI/Firmware/CryptoPkg/Driver/CryptoDxe.c b/src/VBox/Devices/EFI/Firmware/CryptoPkg/Driver/CryptoDxe.c new file mode 100644 index 00000000..e06a7552 --- /dev/null +++ b/src/VBox/Devices/EFI/Firmware/CryptoPkg/Driver/CryptoDxe.c @@ -0,0 +1,38 @@ +/** @file + Installs the EDK II Crypto Protocol + + Copyright (C) Microsoft Corporation. All rights reserved. + SPDX-License-Identifier: BSD-2-Clause-Patent + +**/ + +#include <PiDxe.h> +#include <Library/UefiBootServicesTableLib.h> +#include <Protocol/Crypto.h> + +extern CONST EDKII_CRYPTO_PROTOCOL mEdkiiCrypto; + +/** + The module Entry Point of the Crypto Dxe Driver. + + @param[in] ImageHandle The firmware allocated handle for the EFI image. + @param[in] SystemTable A pointer to the EFI System Table. + + @retval EFI_SUCCESS The entry point is executed successfully. + @retval Other Some error occurs when executing this entry point. + +**/ +EFI_STATUS +EFIAPI +CryptoDxeEntry ( + IN EFI_HANDLE ImageHandle, + IN EFI_SYSTEM_TABLE *SystemTable + ) +{ + return gBS->InstallMultipleProtocolInterfaces( + &ImageHandle, + &gEdkiiCryptoProtocolGuid, + (EDKII_CRYPTO_PROTOCOL *) &mEdkiiCrypto, + NULL + ); +} |