mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-29 23:24:15 +01:00
Move UINT32_LE macros to common.h
32-bit integer manipulation macros (little edian): GET_UINT32_LE and PUT_UINT32_LE appear in several files in library/. Removes duplicate code and save vertical space the macro has been moved to common.h. Improves maintainability. Also provided brief comment in common.h for BYTES_TO_U32_LE. comment/documentation will probably need to be edited further for all recent additions to library/common.h Signed-off-by: Joe Subbiani <joe.subbiani@arm.com>
This commit is contained in:
parent
aa5f6a6784
commit
4fb755592c
@ -57,29 +57,6 @@
|
|||||||
#define AES_VALIDATE( cond ) \
|
#define AES_VALIDATE( cond ) \
|
||||||
MBEDTLS_INTERNAL_VALIDATE( cond )
|
MBEDTLS_INTERNAL_VALIDATE( cond )
|
||||||
|
|
||||||
/*
|
|
||||||
* 32-bit integer manipulation macros (little endian)
|
|
||||||
*/
|
|
||||||
#ifndef GET_UINT32_LE
|
|
||||||
#define GET_UINT32_LE(n,b,i) \
|
|
||||||
{ \
|
|
||||||
(n) = ( (uint32_t) (b)[(i) ] ) \
|
|
||||||
| ( (uint32_t) (b)[(i) + 1] << 8 ) \
|
|
||||||
| ( (uint32_t) (b)[(i) + 2] << 16 ) \
|
|
||||||
| ( (uint32_t) (b)[(i) + 3] << 24 ); \
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef PUT_UINT32_LE
|
|
||||||
#define PUT_UINT32_LE(n,b,i) \
|
|
||||||
{ \
|
|
||||||
(b)[(i) ] = (unsigned char) ( ( (n) ) & 0xFF ); \
|
|
||||||
(b)[(i) + 1] = (unsigned char) ( ( (n) >> 8 ) & 0xFF ); \
|
|
||||||
(b)[(i) + 2] = (unsigned char) ( ( (n) >> 16 ) & 0xFF ); \
|
|
||||||
(b)[(i) + 3] = (unsigned char) ( ( (n) >> 24 ) & 0xFF ); \
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(MBEDTLS_PADLOCK_C) && \
|
#if defined(MBEDTLS_PADLOCK_C) && \
|
||||||
( defined(MBEDTLS_HAVE_X86) || defined(MBEDTLS_PADLOCK_ALIGN16) )
|
( defined(MBEDTLS_HAVE_X86) || defined(MBEDTLS_PADLOCK_ALIGN16) )
|
||||||
static int aes_padlock_ace = -1;
|
static int aes_padlock_ace = -1;
|
||||||
|
@ -55,29 +55,6 @@
|
|||||||
#define ARIA_VALIDATE( cond ) \
|
#define ARIA_VALIDATE( cond ) \
|
||||||
MBEDTLS_INTERNAL_VALIDATE( cond )
|
MBEDTLS_INTERNAL_VALIDATE( cond )
|
||||||
|
|
||||||
/*
|
|
||||||
* 32-bit integer manipulation macros (little endian)
|
|
||||||
*/
|
|
||||||
#ifndef GET_UINT32_LE
|
|
||||||
#define GET_UINT32_LE( n, b, i ) \
|
|
||||||
{ \
|
|
||||||
(n) = ( (uint32_t) (b)[(i) ] ) \
|
|
||||||
| ( (uint32_t) (b)[(i) + 1] << 8 ) \
|
|
||||||
| ( (uint32_t) (b)[(i) + 2] << 16 ) \
|
|
||||||
| ( (uint32_t) (b)[(i) + 3] << 24 ); \
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef PUT_UINT32_LE
|
|
||||||
#define PUT_UINT32_LE( n, b, i ) \
|
|
||||||
{ \
|
|
||||||
(b)[(i) ] = (unsigned char) ( ( (n) ) & 0xFF ); \
|
|
||||||
(b)[(i) + 1] = (unsigned char) ( ( (n) >> 8 ) & 0xFF ); \
|
|
||||||
(b)[(i) + 2] = (unsigned char) ( ( (n) >> 16 ) & 0xFF ); \
|
|
||||||
(b)[(i) + 3] = (unsigned char) ( ( (n) >> 24 ) & 0xFF ); \
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* modify byte order: ( A B C D ) -> ( B A D C ), i.e. swap pairs of bytes
|
* modify byte order: ( A B C D ) -> ( B A D C ), i.e. swap pairs of bytes
|
||||||
*
|
*
|
||||||
|
@ -90,8 +90,31 @@
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/*
|
||||||
|
* 32-bit integer manipulation macros (little endian)
|
||||||
|
*/
|
||||||
|
#ifndef GET_UINT32_LE
|
||||||
|
#define GET_UINT32_LE(n,b,i) \
|
||||||
|
{ \
|
||||||
|
(n) = ( (uint32_t) (b)[(i) ] ) \
|
||||||
|
| ( (uint32_t) (b)[(i) + 1] << 8 ) \
|
||||||
|
| ( (uint32_t) (b)[(i) + 2] << 16 ) \
|
||||||
|
| ( (uint32_t) (b)[(i) + 3] << 24 ); \
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef PUT_UINT32_LE
|
||||||
|
#define PUT_UINT32_LE(n,b,i) \
|
||||||
|
{ \
|
||||||
|
(b)[(i) ] = (unsigned char) ( ( (n) ) & 0xFF ); \
|
||||||
|
(b)[(i) + 1] = (unsigned char) ( ( (n) >> 8 ) & 0xFF ); \
|
||||||
|
(b)[(i) + 2] = (unsigned char) ( ( (n) >> 16 ) & 0xFF ); \
|
||||||
|
(b)[(i) + 3] = (unsigned char) ( ( (n) >> 24 ) & 0xFF ); \
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* 32-bit integer conversion from bytes (little endian)
|
||||||
*/
|
*/
|
||||||
#define BYTES_TO_U32_LE( data, offset ) \
|
#define BYTES_TO_U32_LE( data, offset ) \
|
||||||
( (uint32_t) (data)[offset] \
|
( (uint32_t) (data)[offset] \
|
||||||
|
@ -43,29 +43,6 @@
|
|||||||
|
|
||||||
#if !defined(MBEDTLS_MD5_ALT)
|
#if !defined(MBEDTLS_MD5_ALT)
|
||||||
|
|
||||||
/*
|
|
||||||
* 32-bit integer manipulation macros (little endian)
|
|
||||||
*/
|
|
||||||
#ifndef GET_UINT32_LE
|
|
||||||
#define GET_UINT32_LE(n,b,i) \
|
|
||||||
{ \
|
|
||||||
(n) = ( (uint32_t) (b)[(i) ] ) \
|
|
||||||
| ( (uint32_t) (b)[(i) + 1] << 8 ) \
|
|
||||||
| ( (uint32_t) (b)[(i) + 2] << 16 ) \
|
|
||||||
| ( (uint32_t) (b)[(i) + 3] << 24 ); \
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef PUT_UINT32_LE
|
|
||||||
#define PUT_UINT32_LE(n,b,i) \
|
|
||||||
{ \
|
|
||||||
(b)[(i) ] = (unsigned char) ( ( (n) ) & 0xFF ); \
|
|
||||||
(b)[(i) + 1] = (unsigned char) ( ( (n) >> 8 ) & 0xFF ); \
|
|
||||||
(b)[(i) + 2] = (unsigned char) ( ( (n) >> 16 ) & 0xFF ); \
|
|
||||||
(b)[(i) + 3] = (unsigned char) ( ( (n) >> 24 ) & 0xFF ); \
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
void mbedtls_md5_init( mbedtls_md5_context *ctx )
|
void mbedtls_md5_init( mbedtls_md5_context *ctx )
|
||||||
{
|
{
|
||||||
memset( ctx, 0, sizeof( mbedtls_md5_context ) );
|
memset( ctx, 0, sizeof( mbedtls_md5_context ) );
|
||||||
|
@ -234,29 +234,6 @@ static psa_status_t psa_crypto_storage_get_data_length(
|
|||||||
return( PSA_SUCCESS );
|
return( PSA_SUCCESS );
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* 32-bit integer manipulation macros (little endian)
|
|
||||||
*/
|
|
||||||
#ifndef GET_UINT32_LE
|
|
||||||
#define GET_UINT32_LE( n, b, i ) \
|
|
||||||
{ \
|
|
||||||
(n) = ( (uint32_t) (b)[(i) ] ) \
|
|
||||||
| ( (uint32_t) (b)[(i) + 1] << 8 ) \
|
|
||||||
| ( (uint32_t) (b)[(i) + 2] << 16 ) \
|
|
||||||
| ( (uint32_t) (b)[(i) + 3] << 24 ); \
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef PUT_UINT32_LE
|
|
||||||
#define PUT_UINT32_LE( n, b, i ) \
|
|
||||||
{ \
|
|
||||||
(b)[(i) ] = (unsigned char) ( ( (n) ) & 0xFF ); \
|
|
||||||
(b)[(i) + 1] = (unsigned char) ( ( (n) >> 8 ) & 0xFF ); \
|
|
||||||
(b)[(i) + 2] = (unsigned char) ( ( (n) >> 16 ) & 0xFF ); \
|
|
||||||
(b)[(i) + 3] = (unsigned char) ( ( (n) >> 24 ) & 0xFF ); \
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* 16-bit integer manipulation macros (little endian)
|
* 16-bit integer manipulation macros (little endian)
|
||||||
*/
|
*/
|
||||||
|
@ -44,29 +44,6 @@
|
|||||||
|
|
||||||
#if !defined(MBEDTLS_RIPEMD160_ALT)
|
#if !defined(MBEDTLS_RIPEMD160_ALT)
|
||||||
|
|
||||||
/*
|
|
||||||
* 32-bit integer manipulation macros (little endian)
|
|
||||||
*/
|
|
||||||
#ifndef GET_UINT32_LE
|
|
||||||
#define GET_UINT32_LE(n,b,i) \
|
|
||||||
{ \
|
|
||||||
(n) = ( (uint32_t) (b)[(i) ] ) \
|
|
||||||
| ( (uint32_t) (b)[(i) + 1] << 8 ) \
|
|
||||||
| ( (uint32_t) (b)[(i) + 2] << 16 ) \
|
|
||||||
| ( (uint32_t) (b)[(i) + 3] << 24 ); \
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef PUT_UINT32_LE
|
|
||||||
#define PUT_UINT32_LE(n,b,i) \
|
|
||||||
{ \
|
|
||||||
(b)[(i) ] = (unsigned char) ( ( (n) ) & 0xFF ); \
|
|
||||||
(b)[(i) + 1] = (unsigned char) ( ( (n) >> 8 ) & 0xFF ); \
|
|
||||||
(b)[(i) + 2] = (unsigned char) ( ( (n) >> 16 ) & 0xFF ); \
|
|
||||||
(b)[(i) + 3] = (unsigned char) ( ( (n) >> 24 ) & 0xFF ); \
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
void mbedtls_ripemd160_init( mbedtls_ripemd160_context *ctx )
|
void mbedtls_ripemd160_init( mbedtls_ripemd160_context *ctx )
|
||||||
{
|
{
|
||||||
memset( ctx, 0, sizeof( mbedtls_ripemd160_context ) );
|
memset( ctx, 0, sizeof( mbedtls_ripemd160_context ) );
|
||||||
|
Loading…
Reference in New Issue
Block a user