mirror of https://github.com/ARMmbed/mbed-os.git
Move definitions in aes_alt.c + Factorize code
parent
d19c9eae40
commit
e2c96e9b7a
|
@ -22,9 +22,4 @@
|
||||||
|
|
||||||
#define MBEDTLS_AES_ALT
|
#define MBEDTLS_AES_ALT
|
||||||
|
|
||||||
//the following defines are provided to maintain compatibility between STM32 families
|
|
||||||
#define __HAL_RCC_CRYP_CLK_ENABLE __HAL_RCC_AES_CLK_ENABLE
|
|
||||||
#define __HAL_RCC_CRYP_FORCE_RESET __HAL_RCC_AES_FORCE_RESET
|
|
||||||
#define __HAL_RCC_CRYP_RELEASE_RESET __HAL_RCC_AES_RELEASE_RESET
|
|
||||||
#define CRYP AES
|
|
||||||
#endif /* MBEDTLS_DEVICE_H */
|
#endif /* MBEDTLS_DEVICE_H */
|
||||||
|
|
|
@ -23,10 +23,17 @@
|
||||||
|
|
||||||
#if defined(MBEDTLS_AES_ALT)
|
#if defined(MBEDTLS_AES_ALT)
|
||||||
|
|
||||||
|
#if defined(TARGET_STM32L486xG)
|
||||||
|
//the following defines are provided to maintain compatibility between STM32 families
|
||||||
|
#define __HAL_RCC_CRYP_CLK_ENABLE __HAL_RCC_AES_CLK_ENABLE
|
||||||
|
#define __HAL_RCC_CRYP_FORCE_RESET __HAL_RCC_AES_FORCE_RESET
|
||||||
|
#define __HAL_RCC_CRYP_RELEASE_RESET __HAL_RCC_AES_RELEASE_RESET
|
||||||
|
#define CRYP AES
|
||||||
|
#endif
|
||||||
|
|
||||||
static int aes_set_key( mbedtls_aes_context *ctx, const unsigned char *key, unsigned int keybits )
|
static int aes_set_key( mbedtls_aes_context *ctx, const unsigned char *key, unsigned int keybits )
|
||||||
{
|
{
|
||||||
switch( keybits )
|
switch( keybits ) {
|
||||||
{
|
|
||||||
case 128:
|
case 128:
|
||||||
ctx->hcryp_aes.Init.KeySize = CRYP_KEYSIZE_128B;
|
ctx->hcryp_aes.Init.KeySize = CRYP_KEYSIZE_128B;
|
||||||
memcpy(ctx->aes_key, key, 16);
|
memcpy(ctx->aes_key, key, 16);
|
||||||
|
@ -70,7 +77,8 @@ static int aes_set_key( mbedtls_aes_context *ctx, const unsigned char *key, unsi
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Implementation that should never be optimized out by the compiler */
|
/* Implementation that should never be optimized out by the compiler */
|
||||||
static void mbedtls_zeroize( void *v, size_t n ) {
|
static void mbedtls_zeroize( void *v, size_t n )
|
||||||
|
{
|
||||||
volatile unsigned char *p = (unsigned char*)v; while( n-- ) *p++ = 0;
|
volatile unsigned char *p = (unsigned char*)v; while( n-- ) *p++ = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -122,14 +130,11 @@ int mbedtls_aes_crypt_ecb( mbedtls_aes_context *ctx,
|
||||||
/* allow multi-instance of CRYP use: restore context for CRYP hw module */
|
/* allow multi-instance of CRYP use: restore context for CRYP hw module */
|
||||||
ctx->hcryp_aes.Instance->CR = ctx->ctx_save_cr;
|
ctx->hcryp_aes.Instance->CR = ctx->ctx_save_cr;
|
||||||
|
|
||||||
if(mode == MBEDTLS_AES_DECRYPT) /* AES decryption */
|
if(mode == MBEDTLS_AES_DECRYPT) { /* AES decryption */
|
||||||
{
|
|
||||||
ctx->hcryp_aes.Init.DataType = CRYP_DATATYPE_8B;
|
ctx->hcryp_aes.Init.DataType = CRYP_DATATYPE_8B;
|
||||||
ctx->hcryp_aes.Init.pKey = ctx->aes_key;
|
ctx->hcryp_aes.Init.pKey = ctx->aes_key;
|
||||||
mbedtls_aes_decrypt( ctx, input, output );
|
mbedtls_aes_decrypt( ctx, input, output );
|
||||||
}
|
} else { /* AES encryption */
|
||||||
else /* AES encryption */
|
|
||||||
{
|
|
||||||
ctx->hcryp_aes.Init.DataType = CRYP_DATATYPE_8B;
|
ctx->hcryp_aes.Init.DataType = CRYP_DATATYPE_8B;
|
||||||
ctx->hcryp_aes.Init.pKey = ctx->aes_key;
|
ctx->hcryp_aes.Init.pKey = ctx->aes_key;
|
||||||
mbedtls_aes_encrypt( ctx, input, output );
|
mbedtls_aes_encrypt( ctx, input, output );
|
||||||
|
@ -141,6 +146,31 @@ int mbedtls_aes_crypt_ecb( mbedtls_aes_context *ctx,
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(MBEDTLS_CIPHER_MODE_CBC)
|
#if defined(MBEDTLS_CIPHER_MODE_CBC)
|
||||||
|
#if defined (TARGET_STM32L486xG)
|
||||||
|
static int st_hal_cryp_cbc( mbedtls_aes_context *ctx, uint32_t opmode, size_t length,
|
||||||
|
unsigned char iv[16], uint8_t *input, uint8_t *output)
|
||||||
|
{
|
||||||
|
int status = 0;
|
||||||
|
ctx->hcryp_aes.Init.pInitVect = &iv[0]; // used in process, not in the init
|
||||||
|
if ((ctx->hcryp_aes.Init.OperatingMode != opmode) || \
|
||||||
|
(ctx->hcryp_aes.Init.ChainingMode != CRYP_CHAINMODE_AES_CBC) || \
|
||||||
|
(ctx->hcryp_aes.Init.KeyWriteFlag != CRYP_KEY_WRITE_ENABLE)) {
|
||||||
|
|
||||||
|
/* Re-initialize AES IP with proper parameters */
|
||||||
|
if (HAL_CRYP_DeInit(&ctx->hcryp_aes) != HAL_OK)
|
||||||
|
return HAL_ERROR;
|
||||||
|
ctx->hcryp_aes.Init.OperatingMode = opmode;
|
||||||
|
ctx->hcryp_aes.Init.ChainingMode = CRYP_CHAINMODE_AES_CBC;
|
||||||
|
ctx->hcryp_aes.Init.KeyWriteFlag = CRYP_KEY_WRITE_ENABLE;
|
||||||
|
if (HAL_CRYP_Init(&ctx->hcryp_aes) != HAL_OK)
|
||||||
|
return HAL_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
status = HAL_CRYPEx_AES(&ctx->hcryp_aes, input, length, output, 10);
|
||||||
|
|
||||||
|
return status;
|
||||||
|
}
|
||||||
|
#endif /* TARGET_STM32L486xG */
|
||||||
|
|
||||||
int mbedtls_aes_crypt_cbc( mbedtls_aes_context *ctx,
|
int mbedtls_aes_crypt_cbc( mbedtls_aes_context *ctx,
|
||||||
int mode,
|
int mode,
|
||||||
|
@ -152,51 +182,21 @@ int mbedtls_aes_crypt_cbc( mbedtls_aes_context *ctx,
|
||||||
int status = 0;
|
int status = 0;
|
||||||
if( length % 16 )
|
if( length % 16 )
|
||||||
return( MBEDTLS_ERR_AES_INVALID_INPUT_LENGTH );
|
return( MBEDTLS_ERR_AES_INVALID_INPUT_LENGTH );
|
||||||
|
|
||||||
if( mode == MBEDTLS_AES_DECRYPT )
|
|
||||||
{
|
|
||||||
ctx->hcryp_aes.Init.pInitVect = &iv[0]; // used in process, not in the init
|
|
||||||
#if defined (TARGET_STM32L486xG)
|
#if defined (TARGET_STM32L486xG)
|
||||||
if ((ctx->hcryp_aes.Init.OperatingMode != CRYP_ALGOMODE_KEYDERIVATION_DECRYPT) || \
|
if( mode == MBEDTLS_AES_DECRYPT ) {
|
||||||
(ctx->hcryp_aes.Init.ChainingMode != CRYP_CHAINMODE_AES_CBC) || \
|
status = st_hal_cryp_cbc(ctx, CRYP_ALGOMODE_KEYDERIVATION_DECRYPT, length, iv, (uint8_t *)input, (uint8_t *)output);
|
||||||
(ctx->hcryp_aes.Init.KeyWriteFlag != CRYP_KEY_WRITE_ENABLE)) {
|
} else {
|
||||||
/* Re-initialize AES IP with proper parameters */
|
status = st_hal_cryp_cbc(ctx, CRYP_ALGOMODE_ENCRYPT, length, iv, (uint8_t *)input, (uint8_t *)output);
|
||||||
if (HAL_CRYP_DeInit(&ctx->hcryp_aes) != HAL_OK)
|
|
||||||
return HAL_ERROR;
|
|
||||||
ctx->hcryp_aes.Init.OperatingMode = CRYP_ALGOMODE_KEYDERIVATION_DECRYPT;
|
|
||||||
ctx->hcryp_aes.Init.ChainingMode = CRYP_CHAINMODE_AES_CBC;
|
|
||||||
ctx->hcryp_aes.Init.KeyWriteFlag = CRYP_KEY_WRITE_ENABLE;
|
|
||||||
if (HAL_CRYP_Init(&ctx->hcryp_aes) != HAL_OK)
|
|
||||||
return HAL_ERROR;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
status = HAL_CRYPEx_AES(&ctx->hcryp_aes, (uint8_t *)input, length, (uint8_t *)output, 10);
|
|
||||||
#else
|
#else
|
||||||
|
ctx->hcryp_aes.Init.pInitVect = &iv[0];
|
||||||
|
|
||||||
|
if( mode == MBEDTLS_AES_DECRYPT ) {
|
||||||
status = HAL_CRYP_AESCBC_Decrypt(&ctx->hcryp_aes, (uint8_t *)input, length, (uint8_t *)output, 10);
|
status = HAL_CRYP_AESCBC_Decrypt(&ctx->hcryp_aes, (uint8_t *)input, length, (uint8_t *)output, 10);
|
||||||
#endif
|
} else {
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
ctx->hcryp_aes.Init.pInitVect = &iv[0]; // used in process, not in the init
|
|
||||||
#if defined (TARGET_STM32L486xG)
|
|
||||||
if ((ctx->hcryp_aes.Init.OperatingMode != CRYP_ALGOMODE_ENCRYPT) || \
|
|
||||||
(ctx->hcryp_aes.Init.ChainingMode != CRYP_CHAINMODE_AES_CBC) || \
|
|
||||||
(ctx->hcryp_aes.Init.KeyWriteFlag != CRYP_KEY_WRITE_ENABLE)) {
|
|
||||||
/* Re-initialize AES IP with proper parameters */
|
|
||||||
if (HAL_CRYP_DeInit(&ctx->hcryp_aes) != HAL_OK)
|
|
||||||
return HAL_ERROR;
|
|
||||||
ctx->hcryp_aes.Init.OperatingMode = CRYP_ALGOMODE_ENCRYPT;
|
|
||||||
ctx->hcryp_aes.Init.ChainingMode = CRYP_CHAINMODE_AES_CBC;
|
|
||||||
ctx->hcryp_aes.Init.KeyWriteFlag = CRYP_KEY_WRITE_ENABLE;
|
|
||||||
if (HAL_CRYP_Init(&ctx->hcryp_aes) != HAL_OK)
|
|
||||||
return HAL_ERROR;
|
|
||||||
}
|
|
||||||
|
|
||||||
status = HAL_CRYPEx_AES(&ctx->hcryp_aes, (uint8_t *)input, length, (uint8_t *)output, 10);
|
|
||||||
#else
|
|
||||||
status = HAL_CRYP_AESCBC_Encrypt(&ctx->hcryp_aes, (uint8_t *)input, length, (uint8_t *)output, 10);
|
status = HAL_CRYP_AESCBC_Encrypt(&ctx->hcryp_aes, (uint8_t *)input, length, (uint8_t *)output, 10);
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
return( status );
|
return( status );
|
||||||
}
|
}
|
||||||
#endif /* MBEDTLS_CIPHER_MODE_CBC */
|
#endif /* MBEDTLS_CIPHER_MODE_CBC */
|
||||||
|
@ -213,10 +213,8 @@ int mbedtls_aes_crypt_cfb128( mbedtls_aes_context *ctx,
|
||||||
int c;
|
int c;
|
||||||
size_t n = *iv_off;
|
size_t n = *iv_off;
|
||||||
|
|
||||||
if( mode == MBEDTLS_AES_DECRYPT )
|
if( mode == MBEDTLS_AES_DECRYPT ) {
|
||||||
{
|
while( length-- ) {
|
||||||
while( length-- )
|
|
||||||
{
|
|
||||||
if( n == 0 )
|
if( n == 0 )
|
||||||
mbedtls_aes_crypt_ecb( ctx, MBEDTLS_AES_ENCRYPT, iv, iv );
|
mbedtls_aes_crypt_ecb( ctx, MBEDTLS_AES_ENCRYPT, iv, iv );
|
||||||
|
|
||||||
|
@ -226,11 +224,8 @@ int mbedtls_aes_crypt_cfb128( mbedtls_aes_context *ctx,
|
||||||
|
|
||||||
n = ( n + 1 ) & 0x0F;
|
n = ( n + 1 ) & 0x0F;
|
||||||
}
|
}
|
||||||
}
|
} else {
|
||||||
else
|
while( length-- ) {
|
||||||
{
|
|
||||||
while( length-- )
|
|
||||||
{
|
|
||||||
if( n == 0 )
|
if( n == 0 )
|
||||||
mbedtls_aes_crypt_ecb( ctx, MBEDTLS_AES_ENCRYPT, iv, iv );
|
mbedtls_aes_crypt_ecb( ctx, MBEDTLS_AES_ENCRYPT, iv, iv );
|
||||||
|
|
||||||
|
@ -256,8 +251,7 @@ int mbedtls_aes_crypt_cfb8( mbedtls_aes_context *ctx,
|
||||||
unsigned char c;
|
unsigned char c;
|
||||||
unsigned char ov[17];
|
unsigned char ov[17];
|
||||||
|
|
||||||
while( length-- )
|
while( length-- ) {
|
||||||
{
|
|
||||||
memcpy( ov, iv, 16 );
|
memcpy( ov, iv, 16 );
|
||||||
mbedtls_aes_crypt_ecb( ctx, MBEDTLS_AES_ENCRYPT, iv, iv );
|
mbedtls_aes_crypt_ecb( ctx, MBEDTLS_AES_ENCRYPT, iv, iv );
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue