Changeset 85718 in vbox for trunk/src/VBox/Devices/EFI/FirmwareNew/SecurityPkg/Hash2DxeCrypto
- Timestamp:
- Aug 12, 2020 4:09:12 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 139865
- Location:
- trunk/src/VBox/Devices/EFI/FirmwareNew
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/FirmwareNew
-
Property svn:mergeinfo
changed from (toggle deleted branches)
to (toggle deleted branches)/vendor/edk2/current 103735-103757,103769-103776,129194-133213 /vendor/edk2/current 103735-103757,103769-103776,129194-139864
-
Property svn:mergeinfo
changed from (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/FirmwareNew/SecurityPkg/Hash2DxeCrypto/Driver.c
r80721 r85718 23 23 to the existing child handle. 24 24 25 @retval EFI_SUCCES 25 @retval EFI_SUCCESS The protocol was added to ChildHandle. 26 26 @retval EFI_INVALID_PARAMETER ChildHandle is NULL. 27 27 @retval EFI_OUT_OF_RESOURCES There are not enough resources available to … … 100 100 @param[in] ChildHandle Handle of the child to destroy. 101 101 102 @retval EFI_SUCCES 102 @retval EFI_SUCCESS The protocol was removed from ChildHandle. 103 103 @retval EFI_UNSUPPORTED ChildHandle does not support the protocol that 104 104 is being removed. … … 194 194 @param[in] SystemTable The system table. 195 195 196 @retval EFI_SUCCES 196 @retval EFI_SUCCESS The service binding protocols is successfully installed. 197 197 @retval Others Other errors as indicated. 198 198 -
trunk/src/VBox/Devices/EFI/FirmwareNew/SecurityPkg/Hash2DxeCrypto/Driver.h
r80721 r85718 80 80 to the existing child handle. 81 81 82 @retval EFI_SUCCES 82 @retval EFI_SUCCESS The protocol was added to ChildHandle. 83 83 @retval EFI_INVALID_PARAMETER ChildHandle is NULL. 84 84 @retval EFI_OUT_OF_RESOURCES There are not enough resources available to … … 105 105 @param[in] ChildHandle Handle of the child to destroy. 106 106 107 @retval EFI_SUCCES 107 @retval EFI_SUCCESS The protocol was removed from ChildHandle. 108 108 @retval EFI_UNSUPPORTED ChildHandle does not support the protocol that 109 109 is being removed. -
trunk/src/VBox/Devices/EFI/FirmwareNew/SecurityPkg/Hash2DxeCrypto/Hash2DxeCrypto.c
r80721 r85718 88 88 the specified memory. After this function has been called, the Hash context cannot 89 89 be used again. 90 Hash context should be already correctly in tialized by HashInit(), and should not be90 Hash context should be already correctly initialized by HashInit(), and should not be 91 91 finalized by HashFinal(). Behavior with invalid Hash context is undefined. 92 92 -
trunk/src/VBox/Devices/EFI/FirmwareNew/SecurityPkg/Hash2DxeCrypto/Hash2DxeCrypto.inf
r80721 r85718 2 2 # Produces the UEFI HASH2 protocol 3 3 # 4 # This module will use EDKII crypto lib ary to HASH2 protocol.4 # This module will use EDKII crypto library to HASH2 protocol. 5 5 # 6 6 # (C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR> -
trunk/src/VBox/Devices/EFI/FirmwareNew/SecurityPkg/Hash2DxeCrypto/Hash2DxeCrypto.uni
r80721 r85718 2 2 // Produces the UEFI HASH2 protocol 3 3 // 4 // This module will use EDKII crypto lib ary to HASH2 protocol.4 // This module will use EDKII crypto library to HASH2 protocol. 5 5 // 6 6 // Copyright (c) 2015, Intel Corporation. All rights reserved.<BR> … … 13 13 #string STR_MODULE_ABSTRACT #language en-US "Produces UEFI HASH2 protocol" 14 14 15 #string STR_MODULE_DESCRIPTION #language en-US "This module will use EDKII crypto lib ary to HASH2 protocol."15 #string STR_MODULE_DESCRIPTION #language en-US "This module will use EDKII crypto library to HASH2 protocol." 16 16
Note:
See TracChangeset
for help on using the changeset viewer.