Home
last modified time | relevance | path

Searched refs:PUT_UINT32_BE (Results 1 – 8 of 8) sorted by relevance

/net-tools-3.7.0/mbedtls-2.4.0/library/
Dsha256.c71 #ifndef PUT_UINT32_BE
72 #define PUT_UINT32_BE(n,b,i) \ macro
300 PUT_UINT32_BE( high, msglen, 0 ); in mbedtls_sha256_finish()
301 PUT_UINT32_BE( low, msglen, 4 ); in mbedtls_sha256_finish()
309 PUT_UINT32_BE( ctx->state[0], output, 0 ); in mbedtls_sha256_finish()
310 PUT_UINT32_BE( ctx->state[1], output, 4 ); in mbedtls_sha256_finish()
311 PUT_UINT32_BE( ctx->state[2], output, 8 ); in mbedtls_sha256_finish()
312 PUT_UINT32_BE( ctx->state[3], output, 12 ); in mbedtls_sha256_finish()
313 PUT_UINT32_BE( ctx->state[4], output, 16 ); in mbedtls_sha256_finish()
314 PUT_UINT32_BE( ctx->state[5], output, 20 ); in mbedtls_sha256_finish()
[all …]
Dgcm.c70 #ifndef PUT_UINT32_BE
71 #define PUT_UINT32_BE(n,b,i) \ macro
221 PUT_UINT32_BE( ctx->HH[8] >> 32, h, 0 ); in gcm_mult()
222 PUT_UINT32_BE( ctx->HH[8], h, 4 ); in gcm_mult()
223 PUT_UINT32_BE( ctx->HL[8] >> 32, h, 8 ); in gcm_mult()
224 PUT_UINT32_BE( ctx->HL[8], h, 12 ); in gcm_mult()
260 PUT_UINT32_BE( zh >> 32, output, 0 ); in gcm_mult()
261 PUT_UINT32_BE( zh, output, 4 ); in gcm_mult()
262 PUT_UINT32_BE( zl >> 32, output, 8 ); in gcm_mult()
263 PUT_UINT32_BE( zl, output, 12 ); in gcm_mult()
[all …]
Dxtea.c63 #ifndef PUT_UINT32_BE
64 #define PUT_UINT32_BE(n,b,i) \ macro
137 PUT_UINT32_BE( v0, output, 0 ); in mbedtls_xtea_crypt_ecb()
138 PUT_UINT32_BE( v1, output, 4 ); in mbedtls_xtea_crypt_ecb()
Dsha1.c68 #ifndef PUT_UINT32_BE
69 #define PUT_UINT32_BE(n,b,i) \ macro
331 PUT_UINT32_BE( high, msglen, 0 ); in mbedtls_sha1_finish()
332 PUT_UINT32_BE( low, msglen, 4 ); in mbedtls_sha1_finish()
340 PUT_UINT32_BE( ctx->state[0], output, 0 ); in mbedtls_sha1_finish()
341 PUT_UINT32_BE( ctx->state[1], output, 4 ); in mbedtls_sha1_finish()
342 PUT_UINT32_BE( ctx->state[2], output, 8 ); in mbedtls_sha1_finish()
343 PUT_UINT32_BE( ctx->state[3], output, 12 ); in mbedtls_sha1_finish()
344 PUT_UINT32_BE( ctx->state[4], output, 16 ); in mbedtls_sha1_finish()
Dblowfish.c60 #ifndef PUT_UINT32_BE
61 #define PUT_UINT32_BE(n,b,i) \ macro
251 PUT_UINT32_BE( X0, output, 0 ); in mbedtls_blowfish_crypt_ecb()
252 PUT_UINT32_BE( X1, output, 4 ); in mbedtls_blowfish_crypt_ecb()
Ddes.c69 #ifndef PUT_UINT32_BE
70 #define PUT_UINT32_BE(n,b,i) \ macro
652 PUT_UINT32_BE( Y, output, 0 ); in mbedtls_des_crypt_ecb()
653 PUT_UINT32_BE( X, output, 4 ); in mbedtls_des_crypt_ecb()
751 PUT_UINT32_BE( Y, output, 0 ); in mbedtls_des3_crypt_ecb()
752 PUT_UINT32_BE( X, output, 4 ); in mbedtls_des3_crypt_ecb()
Dcamellia.c69 #ifndef PUT_UINT32_BE
70 #define PUT_UINT32_BE(n,b,i) \ macro
546 PUT_UINT32_BE( X[2], output, 0 ); in mbedtls_camellia_crypt_ecb()
547 PUT_UINT32_BE( X[3], output, 4 ); in mbedtls_camellia_crypt_ecb()
548 PUT_UINT32_BE( X[0], output, 8 ); in mbedtls_camellia_crypt_ecb()
549 PUT_UINT32_BE( X[1], output, 12 ); in mbedtls_camellia_crypt_ecb()
/net-tools-3.7.0/mbedtls-2.4.0/tests/suites/
Dhelpers.function88 #ifndef PUT_UINT32_BE
89 #define PUT_UINT32_BE(n,b,i) \
387 PUT_UINT32_BE( info->v0, result, 0 );