mirror of https://github.com/acidanthera/audk.git
CryptoPkg/BaseCryptLib: Retire Aes Ecb mode algorithm
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=1898 Aes Ecb mode is not secure any longer. Remove the Aes Ecb mode support from edk2. Change the Aes Ecb mode field name in EDKII_CRYPTO_PROTOCOL to indicate the function is unsupported any longer. Cc: Jian J Wang <jian.j.wang@intel.com> Cc: Xiaoyu Lu <xiaoyux.lu@intel.com> Cc: Siyuan Fu <siyuan.fu@intel.com> Cc: Michael D Kinney <michael.d.kinney@intel.com> Cc: Jiewen Yao <jiewen.yao@intel.com> Cc: Philippe Mathieu-Daude <philmd@redhat.com> Reviewed-by: Jian J Wang <jian.j.wang@intel.com> Signed-off-by: Zhichao Gao <zhichao.gao@intel.com>
This commit is contained in:
parent
394d589652
commit
80e28dcec8
|
@ -151,7 +151,10 @@
|
||||||
gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Sha512.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
|
gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Sha512.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
|
||||||
gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.X509.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
|
gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.X509.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
|
||||||
gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Tdes.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
|
gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Tdes.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
|
||||||
gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Aes.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
|
gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Aes.Services.GetContextSize | TRUE
|
||||||
|
gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Aes.Services.Init | TRUE
|
||||||
|
gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Aes.Services.CbcEncrypt | TRUE
|
||||||
|
gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Aes.Services.CbcDecrypt | TRUE
|
||||||
gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Arc4.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
|
gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Arc4.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
|
||||||
gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Sm3.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
|
gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Sm3.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
|
||||||
gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Hkdf.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
|
gEfiCryptoPkgTokenSpaceGuid.PcdCryptoServiceFamilyEnable.Hkdf.Family | PCD_CRYPTO_SERVICE_ENABLE_FAMILY
|
||||||
|
|
|
@ -1801,79 +1801,51 @@ CryptoServiceAesInit (
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Performs AES encryption on a data buffer of the specified size in ECB mode.
|
AES ECB Mode is deprecated and unsupported any longer.
|
||||||
|
Keep the function field for binary compability.
|
||||||
This function performs AES encryption on data buffer pointed by Input, of specified
|
|
||||||
size of InputSize, in ECB mode.
|
|
||||||
InputSize must be multiple of block size (16 bytes). This function does not perform
|
|
||||||
padding. Caller must perform padding, if necessary, to ensure valid input data size.
|
|
||||||
AesContext should be already correctly initialized by AesInit(). Behavior with
|
|
||||||
invalid AES context is undefined.
|
|
||||||
|
|
||||||
If AesContext is NULL, then return FALSE.
|
|
||||||
If Input is NULL, then return FALSE.
|
|
||||||
If InputSize is not multiple of block size (16 bytes), then return FALSE.
|
|
||||||
If Output is NULL, then return FALSE.
|
|
||||||
If this interface is not supported, then return FALSE.
|
|
||||||
|
|
||||||
@param[in] AesContext Pointer to the AES context.
|
@param[in] AesContext Pointer to the AES context.
|
||||||
@param[in] Input Pointer to the buffer containing the data to be encrypted.
|
@param[in] Input Pointer to the buffer containing the data to be encrypted.
|
||||||
@param[in] InputSize Size of the Input buffer in bytes.
|
@param[in] InputSize Size of the Input buffer in bytes.
|
||||||
@param[out] Output Pointer to a buffer that receives the AES encryption output.
|
@param[out] Output Pointer to a buffer that receives the AES encryption output.
|
||||||
|
|
||||||
@retval TRUE AES encryption succeeded.
|
|
||||||
@retval FALSE AES encryption failed.
|
|
||||||
@retval FALSE This interface is not supported.
|
@retval FALSE This interface is not supported.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
BOOLEAN
|
BOOLEAN
|
||||||
EFIAPI
|
EFIAPI
|
||||||
CryptoServiceAesEcbEncrypt (
|
DeprecatedCryptoServiceAesEcbEncrypt (
|
||||||
IN VOID *AesContext,
|
IN VOID *AesContext,
|
||||||
IN CONST UINT8 *Input,
|
IN CONST UINT8 *Input,
|
||||||
IN UINTN InputSize,
|
IN UINTN InputSize,
|
||||||
OUT UINT8 *Output
|
OUT UINT8 *Output
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
return CALL_BASECRYPTLIB (Aes.Services.EcbEncrypt, AesEcbEncrypt, (AesContext, Input, InputSize, Output), FALSE);
|
return BaseCryptLibServiceDeprecated ("AesEcbEncrypt"), FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Performs AES decryption on a data buffer of the specified size in ECB mode.
|
AES ECB Mode is deprecated and unsupported any longer.
|
||||||
|
Keep the function field for binary compability.
|
||||||
This function performs AES decryption on data buffer pointed by Input, of specified
|
|
||||||
size of InputSize, in ECB mode.
|
|
||||||
InputSize must be multiple of block size (16 bytes). This function does not perform
|
|
||||||
padding. Caller must perform padding, if necessary, to ensure valid input data size.
|
|
||||||
AesContext should be already correctly initialized by AesInit(). Behavior with
|
|
||||||
invalid AES context is undefined.
|
|
||||||
|
|
||||||
If AesContext is NULL, then return FALSE.
|
|
||||||
If Input is NULL, then return FALSE.
|
|
||||||
If InputSize is not multiple of block size (16 bytes), then return FALSE.
|
|
||||||
If Output is NULL, then return FALSE.
|
|
||||||
If this interface is not supported, then return FALSE.
|
|
||||||
|
|
||||||
@param[in] AesContext Pointer to the AES context.
|
@param[in] AesContext Pointer to the AES context.
|
||||||
@param[in] Input Pointer to the buffer containing the data to be decrypted.
|
@param[in] Input Pointer to the buffer containing the data to be decrypted.
|
||||||
@param[in] InputSize Size of the Input buffer in bytes.
|
@param[in] InputSize Size of the Input buffer in bytes.
|
||||||
@param[out] Output Pointer to a buffer that receives the AES decryption output.
|
@param[out] Output Pointer to a buffer that receives the AES decryption output.
|
||||||
|
|
||||||
@retval TRUE AES decryption succeeded.
|
|
||||||
@retval FALSE AES decryption failed.
|
|
||||||
@retval FALSE This interface is not supported.
|
@retval FALSE This interface is not supported.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
BOOLEAN
|
BOOLEAN
|
||||||
EFIAPI
|
EFIAPI
|
||||||
CryptoServiceAesEcbDecrypt (
|
DeprecatedCryptoServiceAesEcbDecrypt (
|
||||||
IN VOID *AesContext,
|
IN VOID *AesContext,
|
||||||
IN CONST UINT8 *Input,
|
IN CONST UINT8 *Input,
|
||||||
IN UINTN InputSize,
|
IN UINTN InputSize,
|
||||||
OUT UINT8 *Output
|
OUT UINT8 *Output
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
return CALL_BASECRYPTLIB (Aes.Services.EcbDecrypt, AesEcbDecrypt, (AesContext, Input, InputSize, Output), FALSE);
|
return BaseCryptLibServiceDeprecated ("AesEcbDecrypt"), FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -4376,11 +4348,11 @@ const EDKII_CRYPTO_PROTOCOL mEdkiiCrypto = {
|
||||||
DeprecatedCryptoServiceTdesEcbDecrypt,
|
DeprecatedCryptoServiceTdesEcbDecrypt,
|
||||||
DeprecatedCryptoServiceTdesCbcEncrypt,
|
DeprecatedCryptoServiceTdesCbcEncrypt,
|
||||||
DeprecatedCryptoServiceTdesCbcDecrypt,
|
DeprecatedCryptoServiceTdesCbcDecrypt,
|
||||||
/// AES
|
/// AES - ECB mode is deprecated and unsupported
|
||||||
CryptoServiceAesGetContextSize,
|
CryptoServiceAesGetContextSize,
|
||||||
CryptoServiceAesInit,
|
CryptoServiceAesInit,
|
||||||
CryptoServiceAesEcbEncrypt,
|
DeprecatedCryptoServiceAesEcbEncrypt,
|
||||||
CryptoServiceAesEcbDecrypt,
|
DeprecatedCryptoServiceAesEcbDecrypt,
|
||||||
CryptoServiceAesCbcEncrypt,
|
CryptoServiceAesCbcEncrypt,
|
||||||
CryptoServiceAesCbcDecrypt,
|
CryptoServiceAesCbcDecrypt,
|
||||||
/// Arc4 - deprecated and unsupported
|
/// Arc4 - deprecated and unsupported
|
||||||
|
|
|
@ -1323,76 +1323,6 @@ AesInit (
|
||||||
IN UINTN KeyLength
|
IN UINTN KeyLength
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
|
||||||
Performs AES encryption on a data buffer of the specified size in ECB mode.
|
|
||||||
|
|
||||||
This function performs AES encryption on data buffer pointed by Input, of specified
|
|
||||||
size of InputSize, in ECB mode.
|
|
||||||
InputSize must be multiple of block size (16 bytes). This function does not perform
|
|
||||||
padding. Caller must perform padding, if necessary, to ensure valid input data size.
|
|
||||||
AesContext should be already correctly initialized by AesInit(). Behavior with
|
|
||||||
invalid AES context is undefined.
|
|
||||||
|
|
||||||
If AesContext is NULL, then return FALSE.
|
|
||||||
If Input is NULL, then return FALSE.
|
|
||||||
If InputSize is not multiple of block size (16 bytes), then return FALSE.
|
|
||||||
If Output is NULL, then return FALSE.
|
|
||||||
If this interface is not supported, then return FALSE.
|
|
||||||
|
|
||||||
@param[in] AesContext Pointer to the AES context.
|
|
||||||
@param[in] Input Pointer to the buffer containing the data to be encrypted.
|
|
||||||
@param[in] InputSize Size of the Input buffer in bytes.
|
|
||||||
@param[out] Output Pointer to a buffer that receives the AES encryption output.
|
|
||||||
|
|
||||||
@retval TRUE AES encryption succeeded.
|
|
||||||
@retval FALSE AES encryption failed.
|
|
||||||
@retval FALSE This interface is not supported.
|
|
||||||
|
|
||||||
**/
|
|
||||||
BOOLEAN
|
|
||||||
EFIAPI
|
|
||||||
AesEcbEncrypt (
|
|
||||||
IN VOID *AesContext,
|
|
||||||
IN CONST UINT8 *Input,
|
|
||||||
IN UINTN InputSize,
|
|
||||||
OUT UINT8 *Output
|
|
||||||
);
|
|
||||||
|
|
||||||
/**
|
|
||||||
Performs AES decryption on a data buffer of the specified size in ECB mode.
|
|
||||||
|
|
||||||
This function performs AES decryption on data buffer pointed by Input, of specified
|
|
||||||
size of InputSize, in ECB mode.
|
|
||||||
InputSize must be multiple of block size (16 bytes). This function does not perform
|
|
||||||
padding. Caller must perform padding, if necessary, to ensure valid input data size.
|
|
||||||
AesContext should be already correctly initialized by AesInit(). Behavior with
|
|
||||||
invalid AES context is undefined.
|
|
||||||
|
|
||||||
If AesContext is NULL, then return FALSE.
|
|
||||||
If Input is NULL, then return FALSE.
|
|
||||||
If InputSize is not multiple of block size (16 bytes), then return FALSE.
|
|
||||||
If Output is NULL, then return FALSE.
|
|
||||||
If this interface is not supported, then return FALSE.
|
|
||||||
|
|
||||||
@param[in] AesContext Pointer to the AES context.
|
|
||||||
@param[in] Input Pointer to the buffer containing the data to be decrypted.
|
|
||||||
@param[in] InputSize Size of the Input buffer in bytes.
|
|
||||||
@param[out] Output Pointer to a buffer that receives the AES decryption output.
|
|
||||||
|
|
||||||
@retval TRUE AES decryption succeeded.
|
|
||||||
@retval FALSE AES decryption failed.
|
|
||||||
@retval FALSE This interface is not supported.
|
|
||||||
|
|
||||||
**/
|
|
||||||
BOOLEAN
|
|
||||||
EFIAPI
|
|
||||||
AesEcbDecrypt (
|
|
||||||
IN VOID *AesContext,
|
|
||||||
IN CONST UINT8 *Input,
|
|
||||||
IN UINTN InputSize,
|
|
||||||
OUT UINT8 *Output
|
|
||||||
);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Performs AES encryption on a data buffer of the specified size in CBC mode.
|
Performs AES encryption on a data buffer of the specified size in CBC mode.
|
||||||
|
|
||||||
|
|
|
@ -78,120 +78,6 @@ AesInit (
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
Performs AES encryption on a data buffer of the specified size in ECB mode.
|
|
||||||
|
|
||||||
This function performs AES encryption on data buffer pointed by Input, of specified
|
|
||||||
size of InputSize, in ECB mode.
|
|
||||||
InputSize must be multiple of block size (16 bytes). This function does not perform
|
|
||||||
padding. Caller must perform padding, if necessary, to ensure valid input data size.
|
|
||||||
AesContext should be already correctly initialized by AesInit(). Behavior with
|
|
||||||
invalid AES context is undefined.
|
|
||||||
|
|
||||||
If AesContext is NULL, then return FALSE.
|
|
||||||
If Input is NULL, then return FALSE.
|
|
||||||
If InputSize is not multiple of block size (16 bytes), then return FALSE.
|
|
||||||
If Output is NULL, then return FALSE.
|
|
||||||
|
|
||||||
@param[in] AesContext Pointer to the AES context.
|
|
||||||
@param[in] Input Pointer to the buffer containing the data to be encrypted.
|
|
||||||
@param[in] InputSize Size of the Input buffer in bytes.
|
|
||||||
@param[out] Output Pointer to a buffer that receives the AES encryption output.
|
|
||||||
|
|
||||||
@retval TRUE AES encryption succeeded.
|
|
||||||
@retval FALSE AES encryption failed.
|
|
||||||
|
|
||||||
**/
|
|
||||||
BOOLEAN
|
|
||||||
EFIAPI
|
|
||||||
AesEcbEncrypt (
|
|
||||||
IN VOID *AesContext,
|
|
||||||
IN CONST UINT8 *Input,
|
|
||||||
IN UINTN InputSize,
|
|
||||||
OUT UINT8 *Output
|
|
||||||
)
|
|
||||||
{
|
|
||||||
AES_KEY *AesKey;
|
|
||||||
|
|
||||||
//
|
|
||||||
// Check input parameters.
|
|
||||||
//
|
|
||||||
if (AesContext == NULL || Input == NULL || (InputSize % AES_BLOCK_SIZE) != 0 || Output == NULL) {
|
|
||||||
return FALSE;
|
|
||||||
}
|
|
||||||
|
|
||||||
AesKey = (AES_KEY *) AesContext;
|
|
||||||
|
|
||||||
//
|
|
||||||
// Perform AES data encryption with ECB mode (block-by-block)
|
|
||||||
//
|
|
||||||
while (InputSize > 0) {
|
|
||||||
AES_ecb_encrypt (Input, Output, AesKey, AES_ENCRYPT);
|
|
||||||
Input += AES_BLOCK_SIZE;
|
|
||||||
Output += AES_BLOCK_SIZE;
|
|
||||||
InputSize -= AES_BLOCK_SIZE;
|
|
||||||
}
|
|
||||||
|
|
||||||
return TRUE;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
Performs AES decryption on a data buffer of the specified size in ECB mode.
|
|
||||||
|
|
||||||
This function performs AES decryption on data buffer pointed by Input, of specified
|
|
||||||
size of InputSize, in ECB mode.
|
|
||||||
InputSize must be multiple of block size (16 bytes). This function does not perform
|
|
||||||
padding. Caller must perform padding, if necessary, to ensure valid input data size.
|
|
||||||
AesContext should be already correctly initialized by AesInit(). Behavior with
|
|
||||||
invalid AES context is undefined.
|
|
||||||
|
|
||||||
If AesContext is NULL, then return FALSE.
|
|
||||||
If Input is NULL, then return FALSE.
|
|
||||||
If InputSize is not multiple of block size (16 bytes), then return FALSE.
|
|
||||||
If Output is NULL, then return FALSE.
|
|
||||||
|
|
||||||
@param[in] AesContext Pointer to the AES context.
|
|
||||||
@param[in] Input Pointer to the buffer containing the data to be decrypted.
|
|
||||||
@param[in] InputSize Size of the Input buffer in bytes.
|
|
||||||
@param[out] Output Pointer to a buffer that receives the AES decryption output.
|
|
||||||
|
|
||||||
@retval TRUE AES decryption succeeded.
|
|
||||||
@retval FALSE AES decryption failed.
|
|
||||||
|
|
||||||
**/
|
|
||||||
BOOLEAN
|
|
||||||
EFIAPI
|
|
||||||
AesEcbDecrypt (
|
|
||||||
IN VOID *AesContext,
|
|
||||||
IN CONST UINT8 *Input,
|
|
||||||
IN UINTN InputSize,
|
|
||||||
OUT UINT8 *Output
|
|
||||||
)
|
|
||||||
{
|
|
||||||
AES_KEY *AesKey;
|
|
||||||
|
|
||||||
//
|
|
||||||
// Check input parameters.
|
|
||||||
//
|
|
||||||
if (AesContext == NULL || Input == NULL || (InputSize % AES_BLOCK_SIZE) != 0 || Output == NULL) {
|
|
||||||
return FALSE;
|
|
||||||
}
|
|
||||||
|
|
||||||
AesKey = (AES_KEY *) AesContext;
|
|
||||||
|
|
||||||
//
|
|
||||||
// Perform AES data decryption with ECB mode (block-by-block)
|
|
||||||
//
|
|
||||||
while (InputSize > 0) {
|
|
||||||
AES_ecb_encrypt (Input, Output, AesKey + 1, AES_DECRYPT);
|
|
||||||
Input += AES_BLOCK_SIZE;
|
|
||||||
Output += AES_BLOCK_SIZE;
|
|
||||||
InputSize -= AES_BLOCK_SIZE;
|
|
||||||
}
|
|
||||||
|
|
||||||
return TRUE;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Performs AES encryption on a data buffer of the specified size in CBC mode.
|
Performs AES encryption on a data buffer of the specified size in CBC mode.
|
||||||
|
|
||||||
|
|
|
@ -50,58 +50,6 @@ AesInit (
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
Performs AES encryption on a data buffer of the specified size in ECB mode.
|
|
||||||
|
|
||||||
Return FALSE to indicate this interface is not supported.
|
|
||||||
|
|
||||||
@param[in] AesContext Pointer to the AES context.
|
|
||||||
@param[in] Input Pointer to the buffer containing the data to be encrypted.
|
|
||||||
@param[in] InputSize Size of the Input buffer in bytes.
|
|
||||||
@param[out] Output Pointer to a buffer that receives the AES encryption output.
|
|
||||||
|
|
||||||
@retval FALSE This interface is not supported.
|
|
||||||
|
|
||||||
**/
|
|
||||||
BOOLEAN
|
|
||||||
EFIAPI
|
|
||||||
AesEcbEncrypt (
|
|
||||||
IN VOID *AesContext,
|
|
||||||
IN CONST UINT8 *Input,
|
|
||||||
IN UINTN InputSize,
|
|
||||||
OUT UINT8 *Output
|
|
||||||
)
|
|
||||||
{
|
|
||||||
ASSERT (FALSE);
|
|
||||||
return FALSE;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
Performs AES decryption on a data buffer of the specified size in ECB mode.
|
|
||||||
|
|
||||||
Return FALSE to indicate this interface is not supported.
|
|
||||||
|
|
||||||
@param[in] AesContext Pointer to the AES context.
|
|
||||||
@param[in] Input Pointer to the buffer containing the data to be decrypted.
|
|
||||||
@param[in] InputSize Size of the Input buffer in bytes.
|
|
||||||
@param[out] Output Pointer to a buffer that receives the AES decryption output.
|
|
||||||
|
|
||||||
@retval FALSE This interface is not supported.
|
|
||||||
|
|
||||||
**/
|
|
||||||
BOOLEAN
|
|
||||||
EFIAPI
|
|
||||||
AesEcbDecrypt (
|
|
||||||
IN VOID *AesContext,
|
|
||||||
IN CONST UINT8 *Input,
|
|
||||||
IN UINTN InputSize,
|
|
||||||
OUT UINT8 *Output
|
|
||||||
)
|
|
||||||
{
|
|
||||||
ASSERT (FALSE);
|
|
||||||
return FALSE;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Performs AES encryption on a data buffer of the specified size in CBC mode.
|
Performs AES encryption on a data buffer of the specified size in CBC mode.
|
||||||
|
|
||||||
|
|
|
@ -50,58 +50,6 @@ AesInit (
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
Performs AES encryption on a data buffer of the specified size in ECB mode.
|
|
||||||
|
|
||||||
Return FALSE to indicate this interface is not supported.
|
|
||||||
|
|
||||||
@param[in] AesContext Pointer to the AES context.
|
|
||||||
@param[in] Input Pointer to the buffer containing the data to be encrypted.
|
|
||||||
@param[in] InputSize Size of the Input buffer in bytes.
|
|
||||||
@param[out] Output Pointer to a buffer that receives the AES encryption output.
|
|
||||||
|
|
||||||
@retval FALSE This interface is not supported.
|
|
||||||
|
|
||||||
**/
|
|
||||||
BOOLEAN
|
|
||||||
EFIAPI
|
|
||||||
AesEcbEncrypt (
|
|
||||||
IN VOID *AesContext,
|
|
||||||
IN CONST UINT8 *Input,
|
|
||||||
IN UINTN InputSize,
|
|
||||||
OUT UINT8 *Output
|
|
||||||
)
|
|
||||||
{
|
|
||||||
ASSERT (FALSE);
|
|
||||||
return FALSE;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
Performs AES decryption on a data buffer of the specified size in ECB mode.
|
|
||||||
|
|
||||||
Return FALSE to indicate this interface is not supported.
|
|
||||||
|
|
||||||
@param[in] AesContext Pointer to the AES context.
|
|
||||||
@param[in] Input Pointer to the buffer containing the data to be decrypted.
|
|
||||||
@param[in] InputSize Size of the Input buffer in bytes.
|
|
||||||
@param[out] Output Pointer to a buffer that receives the AES decryption output.
|
|
||||||
|
|
||||||
@retval FALSE This interface is not supported.
|
|
||||||
|
|
||||||
**/
|
|
||||||
BOOLEAN
|
|
||||||
EFIAPI
|
|
||||||
AesEcbDecrypt (
|
|
||||||
IN VOID *AesContext,
|
|
||||||
IN CONST UINT8 *Input,
|
|
||||||
IN UINTN InputSize,
|
|
||||||
OUT UINT8 *Output
|
|
||||||
)
|
|
||||||
{
|
|
||||||
ASSERT (FALSE);
|
|
||||||
return FALSE;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Performs AES encryption on a data buffer of the specified size in CBC mode.
|
Performs AES encryption on a data buffer of the specified size in CBC mode.
|
||||||
|
|
||||||
|
|
|
@ -1518,82 +1518,6 @@ AesInit (
|
||||||
CALL_CRYPTO_SERVICE (AesInit, (AesContext, Key, KeyLength), FALSE);
|
CALL_CRYPTO_SERVICE (AesInit, (AesContext, Key, KeyLength), FALSE);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
Performs AES encryption on a data buffer of the specified size in ECB mode.
|
|
||||||
|
|
||||||
This function performs AES encryption on data buffer pointed by Input, of specified
|
|
||||||
size of InputSize, in ECB mode.
|
|
||||||
InputSize must be multiple of block size (16 bytes). This function does not perform
|
|
||||||
padding. Caller must perform padding, if necessary, to ensure valid input data size.
|
|
||||||
AesContext should be already correctly initialized by AesInit(). Behavior with
|
|
||||||
invalid AES context is undefined.
|
|
||||||
|
|
||||||
If AesContext is NULL, then return FALSE.
|
|
||||||
If Input is NULL, then return FALSE.
|
|
||||||
If InputSize is not multiple of block size (16 bytes), then return FALSE.
|
|
||||||
If Output is NULL, then return FALSE.
|
|
||||||
If this interface is not supported, then return FALSE.
|
|
||||||
|
|
||||||
@param[in] AesContext Pointer to the AES context.
|
|
||||||
@param[in] Input Pointer to the buffer containing the data to be encrypted.
|
|
||||||
@param[in] InputSize Size of the Input buffer in bytes.
|
|
||||||
@param[out] Output Pointer to a buffer that receives the AES encryption output.
|
|
||||||
|
|
||||||
@retval TRUE AES encryption succeeded.
|
|
||||||
@retval FALSE AES encryption failed.
|
|
||||||
@retval FALSE This interface is not supported.
|
|
||||||
|
|
||||||
**/
|
|
||||||
BOOLEAN
|
|
||||||
EFIAPI
|
|
||||||
AesEcbEncrypt (
|
|
||||||
IN VOID *AesContext,
|
|
||||||
IN CONST UINT8 *Input,
|
|
||||||
IN UINTN InputSize,
|
|
||||||
OUT UINT8 *Output
|
|
||||||
)
|
|
||||||
{
|
|
||||||
CALL_CRYPTO_SERVICE (AesEcbEncrypt, (AesContext, Input, InputSize, Output), FALSE);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
Performs AES decryption on a data buffer of the specified size in ECB mode.
|
|
||||||
|
|
||||||
This function performs AES decryption on data buffer pointed by Input, of specified
|
|
||||||
size of InputSize, in ECB mode.
|
|
||||||
InputSize must be multiple of block size (16 bytes). This function does not perform
|
|
||||||
padding. Caller must perform padding, if necessary, to ensure valid input data size.
|
|
||||||
AesContext should be already correctly initialized by AesInit(). Behavior with
|
|
||||||
invalid AES context is undefined.
|
|
||||||
|
|
||||||
If AesContext is NULL, then return FALSE.
|
|
||||||
If Input is NULL, then return FALSE.
|
|
||||||
If InputSize is not multiple of block size (16 bytes), then return FALSE.
|
|
||||||
If Output is NULL, then return FALSE.
|
|
||||||
If this interface is not supported, then return FALSE.
|
|
||||||
|
|
||||||
@param[in] AesContext Pointer to the AES context.
|
|
||||||
@param[in] Input Pointer to the buffer containing the data to be decrypted.
|
|
||||||
@param[in] InputSize Size of the Input buffer in bytes.
|
|
||||||
@param[out] Output Pointer to a buffer that receives the AES decryption output.
|
|
||||||
|
|
||||||
@retval TRUE AES decryption succeeded.
|
|
||||||
@retval FALSE AES decryption failed.
|
|
||||||
@retval FALSE This interface is not supported.
|
|
||||||
|
|
||||||
**/
|
|
||||||
BOOLEAN
|
|
||||||
EFIAPI
|
|
||||||
AesEcbDecrypt (
|
|
||||||
IN VOID *AesContext,
|
|
||||||
IN CONST UINT8 *Input,
|
|
||||||
IN UINTN InputSize,
|
|
||||||
OUT UINT8 *Output
|
|
||||||
)
|
|
||||||
{
|
|
||||||
CALL_CRYPTO_SERVICE (AesEcbDecrypt, (AesContext, Input, InputSize, Output), FALSE);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Performs AES encryption on a data buffer of the specified size in CBC mode.
|
Performs AES encryption on a data buffer of the specified size in CBC mode.
|
||||||
|
|
||||||
|
|
|
@ -2498,69 +2498,22 @@ BOOLEAN
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Performs AES encryption on a data buffer of the specified size in ECB mode.
|
AES ECB Mode is deprecated and unsupported any longer.
|
||||||
|
Keep the function field for binary compability.
|
||||||
This function performs AES encryption on data buffer pointed by Input, of specified
|
|
||||||
size of InputSize, in ECB mode.
|
|
||||||
InputSize must be multiple of block size (16 bytes). This function does not perform
|
|
||||||
padding. Caller must perform padding, if necessary, to ensure valid input data size.
|
|
||||||
AesContext should be already correctly initialized by AesInit(). Behavior with
|
|
||||||
invalid AES context is undefined.
|
|
||||||
|
|
||||||
If AesContext is NULL, then return FALSE.
|
|
||||||
If Input is NULL, then return FALSE.
|
|
||||||
If InputSize is not multiple of block size (16 bytes), then return FALSE.
|
|
||||||
If Output is NULL, then return FALSE.
|
|
||||||
If this interface is not supported, then return FALSE.
|
|
||||||
|
|
||||||
@param[in] AesContext Pointer to the AES context.
|
|
||||||
@param[in] Input Pointer to the buffer containing the data to be encrypted.
|
|
||||||
@param[in] InputSize Size of the Input buffer in bytes.
|
|
||||||
@param[out] Output Pointer to a buffer that receives the AES encryption output.
|
|
||||||
|
|
||||||
@retval TRUE AES encryption succeeded.
|
|
||||||
@retval FALSE AES encryption failed.
|
|
||||||
@retval FALSE This interface is not supported.
|
|
||||||
|
|
||||||
**/
|
**/
|
||||||
typedef
|
typedef
|
||||||
BOOLEAN
|
BOOLEAN
|
||||||
(EFIAPI *EDKII_CRYPTO_AES_ECB_ENCRYPT) (
|
(EFIAPI *DEPRECATED_EDKII_CRYPTO_AES_ECB_ENCRYPT) (
|
||||||
IN VOID *AesContext,
|
IN VOID *AesContext,
|
||||||
IN CONST UINT8 *Input,
|
IN CONST UINT8 *Input,
|
||||||
IN UINTN InputSize,
|
IN UINTN InputSize,
|
||||||
OUT UINT8 *Output
|
OUT UINT8 *Output
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
|
||||||
Performs AES decryption on a data buffer of the specified size in ECB mode.
|
|
||||||
|
|
||||||
This function performs AES decryption on data buffer pointed by Input, of specified
|
|
||||||
size of InputSize, in ECB mode.
|
|
||||||
InputSize must be multiple of block size (16 bytes). This function does not perform
|
|
||||||
padding. Caller must perform padding, if necessary, to ensure valid input data size.
|
|
||||||
AesContext should be already correctly initialized by AesInit(). Behavior with
|
|
||||||
invalid AES context is undefined.
|
|
||||||
|
|
||||||
If AesContext is NULL, then return FALSE.
|
|
||||||
If Input is NULL, then return FALSE.
|
|
||||||
If InputSize is not multiple of block size (16 bytes), then return FALSE.
|
|
||||||
If Output is NULL, then return FALSE.
|
|
||||||
If this interface is not supported, then return FALSE.
|
|
||||||
|
|
||||||
@param[in] AesContext Pointer to the AES context.
|
|
||||||
@param[in] Input Pointer to the buffer containing the data to be decrypted.
|
|
||||||
@param[in] InputSize Size of the Input buffer in bytes.
|
|
||||||
@param[out] Output Pointer to a buffer that receives the AES decryption output.
|
|
||||||
|
|
||||||
@retval TRUE AES decryption succeeded.
|
|
||||||
@retval FALSE AES decryption failed.
|
|
||||||
@retval FALSE This interface is not supported.
|
|
||||||
|
|
||||||
**/
|
|
||||||
typedef
|
typedef
|
||||||
BOOLEAN
|
BOOLEAN
|
||||||
(EFIAPI *EDKII_CRYPTO_AES_ECB_DECRYPT) (
|
(EFIAPI *DEPRECATED_EDKII_CRYPTO_AES_ECB_DECRYPT) (
|
||||||
IN VOID *AesContext,
|
IN VOID *AesContext,
|
||||||
IN CONST UINT8 *Input,
|
IN CONST UINT8 *Input,
|
||||||
IN UINTN InputSize,
|
IN UINTN InputSize,
|
||||||
|
@ -3779,11 +3732,11 @@ struct _EDKII_CRYPTO_PROTOCOL {
|
||||||
DEPRECATED_EDKII_CRYPTO_TDES_ECB_DECRYPT DeprecatedTdesEcbDecrypt;
|
DEPRECATED_EDKII_CRYPTO_TDES_ECB_DECRYPT DeprecatedTdesEcbDecrypt;
|
||||||
DEPRECATED_EDKII_CRYPTO_TDES_CBC_ENCRYPT DeprecatedTdesCbcEncrypt;
|
DEPRECATED_EDKII_CRYPTO_TDES_CBC_ENCRYPT DeprecatedTdesCbcEncrypt;
|
||||||
DEPRECATED_EDKII_CRYPTO_TDES_CBC_DECRYPT DeprecatedTdesCbcDecrypt;
|
DEPRECATED_EDKII_CRYPTO_TDES_CBC_DECRYPT DeprecatedTdesCbcDecrypt;
|
||||||
/// AES
|
/// AES - ECB Mode is deprecated and unsupported
|
||||||
EDKII_CRYPTO_AES_GET_CONTEXT_SIZE AesGetContextSize;
|
EDKII_CRYPTO_AES_GET_CONTEXT_SIZE AesGetContextSize;
|
||||||
EDKII_CRYPTO_AES_INIT AesInit;
|
EDKII_CRYPTO_AES_INIT AesInit;
|
||||||
EDKII_CRYPTO_AES_ECB_ENCRYPT AesEcbEncrypt;
|
DEPRECATED_EDKII_CRYPTO_AES_ECB_ENCRYPT DeprecatedAesEcbEncrypt;
|
||||||
EDKII_CRYPTO_AES_ECB_DECRYPT AesEcbDecrypt;
|
DEPRECATED_EDKII_CRYPTO_AES_ECB_DECRYPT DeprecatedAesEcbDecrypt;
|
||||||
EDKII_CRYPTO_AES_CBC_ENCRYPT AesCbcEncrypt;
|
EDKII_CRYPTO_AES_CBC_ENCRYPT AesCbcEncrypt;
|
||||||
EDKII_CRYPTO_AES_CBC_DECRYPT AesCbcDecrypt;
|
EDKII_CRYPTO_AES_CBC_DECRYPT AesCbcDecrypt;
|
||||||
/// Arc4 - deprecated and unsupported
|
/// Arc4 - deprecated and unsupported
|
||||||
|
|
Loading…
Reference in New Issue