VirtualBox

Ignore:
Timestamp:
Aug 12, 2020 4:09:12 PM (4 years ago)
Author:
vboxsync
Message:

Devices/EFI: Merge edk-stable202005 and make it build, bugref:4643

Location:
trunk/src/VBox/Devices/EFI/FirmwareNew
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/EFI/FirmwareNew

  • trunk/src/VBox/Devices/EFI/FirmwareNew/CryptoPkg/Library/BaseCryptLib/Cipher/CryptAesNull.c

    r80721 r85718  
    4545  IN   CONST UINT8  *Key,
    4646  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 BOOLEAN
    67 EFIAPI
    68 AesEcbEncrypt (
    69   IN   VOID         *AesContext,
    70   IN   CONST UINT8  *Input,
    71   IN   UINTN        InputSize,
    72   OUT  UINT8        *Output
    73   )
    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 BOOLEAN
    93 EFIAPI
    94 AesEcbDecrypt (
    95   IN   VOID         *AesContext,
    96   IN   CONST UINT8  *Input,
    97   IN   UINTN        InputSize,
    98   OUT  UINT8        *Output
    9947  )
    10048{
Note: See TracChangeset for help on using the changeset viewer.

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