/net-tools-3.7.0/mbedtls-2.4.0/library/ |
D | sha1.c | 58 #ifndef GET_UINT32_BE 59 #define GET_UINT32_BE(n,b,i) \ macro 117 GET_UINT32_BE( W[ 0], data, 0 ); in mbedtls_sha1_process() 118 GET_UINT32_BE( W[ 1], data, 4 ); in mbedtls_sha1_process() 119 GET_UINT32_BE( W[ 2], data, 8 ); in mbedtls_sha1_process() 120 GET_UINT32_BE( W[ 3], data, 12 ); in mbedtls_sha1_process() 121 GET_UINT32_BE( W[ 4], data, 16 ); in mbedtls_sha1_process() 122 GET_UINT32_BE( W[ 5], data, 20 ); in mbedtls_sha1_process() 123 GET_UINT32_BE( W[ 6], data, 24 ); in mbedtls_sha1_process() 124 GET_UINT32_BE( W[ 7], data, 28 ); in mbedtls_sha1_process() [all …]
|
D | xtea.c | 53 #ifndef GET_UINT32_BE 54 #define GET_UINT32_BE(n,b,i) \ macro 97 GET_UINT32_BE( ctx->k[i], key, i << 2 ); in mbedtls_xtea_setup() 111 GET_UINT32_BE( v0, input, 0 ); in mbedtls_xtea_crypt_ecb() 112 GET_UINT32_BE( v1, input, 4 ); in mbedtls_xtea_crypt_ecb()
|
D | camellia.c | 59 #ifndef GET_UINT32_BE 60 #define GET_UINT32_BE(n,b,i) \ macro 378 GET_UINT32_BE( SIGMA[i][0], SIGMA_CHARS[i], 0 ); in mbedtls_camellia_setkey_enc() 379 GET_UINT32_BE( SIGMA[i][1], SIGMA_CHARS[i], 4 ); in mbedtls_camellia_setkey_enc() 390 GET_UINT32_BE( KC[i], t, i * 4 ); in mbedtls_camellia_setkey_enc() 508 GET_UINT32_BE( X[0], input, 0 ); in mbedtls_camellia_crypt_ecb() 509 GET_UINT32_BE( X[1], input, 4 ); in mbedtls_camellia_crypt_ecb() 510 GET_UINT32_BE( X[2], input, 8 ); in mbedtls_camellia_crypt_ecb() 511 GET_UINT32_BE( X[3], input, 12 ); in mbedtls_camellia_crypt_ecb()
|
D | des.c | 59 #ifndef GET_UINT32_BE 60 #define GET_UINT32_BE(n,b,i) \ macro 429 GET_UINT32_BE( X, key, 0 ); in mbedtls_des_setkey() 430 GET_UINT32_BE( Y, key, 4 ); in mbedtls_des_setkey() 639 GET_UINT32_BE( X, input, 0 ); in mbedtls_des_crypt_ecb() 640 GET_UINT32_BE( Y, input, 4 ); in mbedtls_des_crypt_ecb() 726 GET_UINT32_BE( X, input, 0 ); in mbedtls_des3_crypt_ecb() 727 GET_UINT32_BE( Y, input, 4 ); in mbedtls_des3_crypt_ecb()
|
D | blowfish.c | 50 #ifndef GET_UINT32_BE 51 #define GET_UINT32_BE(n,b,i) \ macro 239 GET_UINT32_BE( X0, input, 0 ); in mbedtls_blowfish_crypt_ecb() 240 GET_UINT32_BE( X1, input, 4 ); in mbedtls_blowfish_crypt_ecb()
|
D | gcm.c | 60 #ifndef GET_UINT32_BE 61 #define GET_UINT32_BE(n,b,i) \ macro 114 GET_UINT32_BE( hi, h, 0 ); in gcm_gen_table() 115 GET_UINT32_BE( lo, h, 4 ); in gcm_gen_table() 118 GET_UINT32_BE( hi, h, 8 ); in gcm_gen_table() 119 GET_UINT32_BE( lo, h, 12 ); in gcm_gen_table()
|
D | sha256.c | 61 #ifndef GET_UINT32_BE 62 #define GET_UINT32_BE(n,b,i) \ macro 195 GET_UINT32_BE( W[i], data, 4 * i ); in mbedtls_sha256_process() 206 GET_UINT32_BE( W[i], data, 4 * i ); in mbedtls_sha256_process()
|
/net-tools-3.7.0/mbedtls-2.4.0/tests/suites/ |
D | helpers.function | 78 #ifndef GET_UINT32_BE 79 #define GET_UINT32_BE(n,b,i) \
|