Changeset 85718 in vbox for trunk/src/VBox/Devices/EFI/FirmwareNew/CryptoPkg/Library/BaseCryptLib/Cipher/CryptAesNull.c
- Timestamp:
- Aug 12, 2020 4:09:12 PM (4 years ago)
- Location:
- trunk/src/VBox/Devices/EFI/FirmwareNew
- Files:
-
- 2 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/CryptoPkg/Library/BaseCryptLib/Cipher/CryptAesNull.c
r80721 r85718 45 45 IN CONST UINT8 *Key, 46 46 IN UINTN KeyLength 47 )48 {49 ASSERT (FALSE);50 return FALSE;51 }52 53 /**54 Performs AES encryption on a data buffer of the specified size in ECB mode.55 56 Return FALSE to indicate this interface is not supported.57 58 @param[in] AesContext Pointer to the AES context.59 @param[in] Input Pointer to the buffer containing the data to be encrypted.60 @param[in] InputSize Size of the Input buffer in bytes.61 @param[out] Output Pointer to a buffer that receives the AES encryption output.62 63 @retval FALSE This interface is not supported.64 65 **/66 BOOLEAN67 EFIAPI68 AesEcbEncrypt (69 IN VOID *AesContext,70 IN CONST UINT8 *Input,71 IN UINTN InputSize,72 OUT UINT8 *Output73 )74 {75 ASSERT (FALSE);76 return FALSE;77 }78 79 /**80 Performs AES decryption on a data buffer of the specified size in ECB mode.81 82 Return FALSE to indicate this interface is not supported.83 84 @param[in] AesContext Pointer to the AES context.85 @param[in] Input Pointer to the buffer containing the data to be decrypted.86 @param[in] InputSize Size of the Input buffer in bytes.87 @param[out] Output Pointer to a buffer that receives the AES decryption output.88 89 @retval FALSE This interface is not supported.90 91 **/92 BOOLEAN93 EFIAPI94 AesEcbDecrypt (95 IN VOID *AesContext,96 IN CONST UINT8 *Input,97 IN UINTN InputSize,98 OUT UINT8 *Output99 47 ) 100 48 {
Note:
See TracChangeset
for help on using the changeset viewer.