Searched refs:GET_UINT32_LE (Results 1 – 4 of 4) sorted by relevance
/net-tools-latest/mbedtls-2.4.0/library/ |
D | md4.c | 59 #ifndef GET_UINT32_LE 60 #define GET_UINT32_LE(n,b,i) \ macro 117 GET_UINT32_LE( X[ 0], data, 0 ); in mbedtls_md4_process() 118 GET_UINT32_LE( X[ 1], data, 4 ); in mbedtls_md4_process() 119 GET_UINT32_LE( X[ 2], data, 8 ); in mbedtls_md4_process() 120 GET_UINT32_LE( X[ 3], data, 12 ); in mbedtls_md4_process() 121 GET_UINT32_LE( X[ 4], data, 16 ); in mbedtls_md4_process() 122 GET_UINT32_LE( X[ 5], data, 20 ); in mbedtls_md4_process() 123 GET_UINT32_LE( X[ 6], data, 24 ); in mbedtls_md4_process() 124 GET_UINT32_LE( X[ 7], data, 28 ); in mbedtls_md4_process() [all …]
|
D | md5.c | 58 #ifndef GET_UINT32_LE 59 #define GET_UINT32_LE(n,b,i) \ macro 116 GET_UINT32_LE( X[ 0], data, 0 ); in mbedtls_md5_process() 117 GET_UINT32_LE( X[ 1], data, 4 ); in mbedtls_md5_process() 118 GET_UINT32_LE( X[ 2], data, 8 ); in mbedtls_md5_process() 119 GET_UINT32_LE( X[ 3], data, 12 ); in mbedtls_md5_process() 120 GET_UINT32_LE( X[ 4], data, 16 ); in mbedtls_md5_process() 121 GET_UINT32_LE( X[ 5], data, 20 ); in mbedtls_md5_process() 122 GET_UINT32_LE( X[ 6], data, 24 ); in mbedtls_md5_process() 123 GET_UINT32_LE( X[ 7], data, 28 ); in mbedtls_md5_process() [all …]
|
D | ripemd160.c | 52 #ifndef GET_UINT32_LE 53 #define GET_UINT32_LE(n,b,i) \ macro 119 GET_UINT32_LE( X[ 0], data, 0 ); in mbedtls_ripemd160_process() 120 GET_UINT32_LE( X[ 1], data, 4 ); in mbedtls_ripemd160_process() 121 GET_UINT32_LE( X[ 2], data, 8 ); in mbedtls_ripemd160_process() 122 GET_UINT32_LE( X[ 3], data, 12 ); in mbedtls_ripemd160_process() 123 GET_UINT32_LE( X[ 4], data, 16 ); in mbedtls_ripemd160_process() 124 GET_UINT32_LE( X[ 5], data, 20 ); in mbedtls_ripemd160_process() 125 GET_UINT32_LE( X[ 6], data, 24 ); in mbedtls_ripemd160_process() 126 GET_UINT32_LE( X[ 7], data, 28 ); in mbedtls_ripemd160_process() [all …]
|
D | aes.c | 65 #ifndef GET_UINT32_LE 66 #define GET_UINT32_LE(n,b,i) \ macro 524 GET_UINT32_LE( RK[i], key, i << 2 ); in mbedtls_aes_setkey_enc() 722 GET_UINT32_LE( X0, input, 0 ); X0 ^= *RK++; in mbedtls_aes_encrypt() 723 GET_UINT32_LE( X1, input, 4 ); X1 ^= *RK++; in mbedtls_aes_encrypt() 724 GET_UINT32_LE( X2, input, 8 ); X2 ^= *RK++; in mbedtls_aes_encrypt() 725 GET_UINT32_LE( X3, input, 12 ); X3 ^= *RK++; in mbedtls_aes_encrypt() 779 GET_UINT32_LE( X0, input, 0 ); X0 ^= *RK++; in mbedtls_aes_decrypt() 780 GET_UINT32_LE( X1, input, 4 ); X1 ^= *RK++; in mbedtls_aes_decrypt() 781 GET_UINT32_LE( X2, input, 8 ); X2 ^= *RK++; in mbedtls_aes_decrypt() [all …]
|