Searched refs:MBEDTLS_GET_UINT32_BE (Results 1 – 9 of 9) sorted by relevance
/optee_os-3.20.0/lib/libmbedtls/mbedtls/library/ |
A D | xtea.c | 64 ctx->k[i] = MBEDTLS_GET_UINT32_BE( key, i << 2 ); in mbedtls_xtea_setup() 78 v0 = MBEDTLS_GET_UINT32_BE( input, 0 ); in mbedtls_xtea_crypt_ecb() 79 v1 = MBEDTLS_GET_UINT32_BE( input, 4 ); in mbedtls_xtea_crypt_ecb()
|
A D | sha1.c | 113 local.W[ 0] = MBEDTLS_GET_UINT32_BE( data, 0 ); in mbedtls_internal_sha1_process() 114 local.W[ 1] = MBEDTLS_GET_UINT32_BE( data, 4 ); in mbedtls_internal_sha1_process() 115 local.W[ 2] = MBEDTLS_GET_UINT32_BE( data, 8 ); in mbedtls_internal_sha1_process() 116 local.W[ 3] = MBEDTLS_GET_UINT32_BE( data, 12 ); in mbedtls_internal_sha1_process() 117 local.W[ 4] = MBEDTLS_GET_UINT32_BE( data, 16 ); in mbedtls_internal_sha1_process() 118 local.W[ 5] = MBEDTLS_GET_UINT32_BE( data, 20 ); in mbedtls_internal_sha1_process() 119 local.W[ 6] = MBEDTLS_GET_UINT32_BE( data, 24 ); in mbedtls_internal_sha1_process() 120 local.W[ 7] = MBEDTLS_GET_UINT32_BE( data, 28 ); in mbedtls_internal_sha1_process() 121 local.W[ 8] = MBEDTLS_GET_UINT32_BE( data, 32 ); in mbedtls_internal_sha1_process() 122 local.W[ 9] = MBEDTLS_GET_UINT32_BE( data, 36 ); in mbedtls_internal_sha1_process() [all …]
|
A D | camellia.c | 356 SIGMA[i][0] = MBEDTLS_GET_UINT32_BE( SIGMA_CHARS[i], 0 ); in mbedtls_camellia_setkey_enc() 357 SIGMA[i][1] = MBEDTLS_GET_UINT32_BE( SIGMA_CHARS[i], 4 ); in mbedtls_camellia_setkey_enc() 368 KC[i] = MBEDTLS_GET_UINT32_BE( t, i * 4 ); in mbedtls_camellia_setkey_enc() 494 X[0] = MBEDTLS_GET_UINT32_BE( input, 0 ); in mbedtls_camellia_crypt_ecb() 495 X[1] = MBEDTLS_GET_UINT32_BE( input, 4 ); in mbedtls_camellia_crypt_ecb() 496 X[2] = MBEDTLS_GET_UINT32_BE( input, 8 ); in mbedtls_camellia_crypt_ecb() 497 X[3] = MBEDTLS_GET_UINT32_BE( input, 12 ); in mbedtls_camellia_crypt_ecb()
|
A D | des.c | 404 X = MBEDTLS_GET_UINT32_BE( key, 0 ); in mbedtls_des_setkey() 405 Y = MBEDTLS_GET_UINT32_BE( key, 4 ); in mbedtls_des_setkey() 614 X = MBEDTLS_GET_UINT32_BE( input, 0 ); in mbedtls_des_crypt_ecb() 615 Y = MBEDTLS_GET_UINT32_BE( input, 4 ); in mbedtls_des_crypt_ecb() 708 X = MBEDTLS_GET_UINT32_BE( input, 0 ); in mbedtls_des3_crypt_ecb() 709 Y = MBEDTLS_GET_UINT32_BE( input, 4 ); in mbedtls_des3_crypt_ecb()
|
A D | common.h | 78 #ifndef MBEDTLS_GET_UINT32_BE 79 #define MBEDTLS_GET_UINT32_BE( data , offset ) \ macro
|
A D | gcm.c | 91 hi = MBEDTLS_GET_UINT32_BE( h, 0 ); in gcm_gen_table() 92 lo = MBEDTLS_GET_UINT32_BE( h, 4 ); in gcm_gen_table() 95 hi = MBEDTLS_GET_UINT32_BE( h, 8 ); in gcm_gen_table() 96 lo = MBEDTLS_GET_UINT32_BE( h, 12 ); in gcm_gen_table()
|
A D | blowfish.c | 222 X0 = MBEDTLS_GET_UINT32_BE( input, 0 ); in mbedtls_blowfish_crypt_ecb() 223 X1 = MBEDTLS_GET_UINT32_BE( input, 4 ); in mbedtls_blowfish_crypt_ecb()
|
A D | sha256.c | 194 local.W[i] = MBEDTLS_GET_UINT32_BE( data, 4 * i ); in mbedtls_internal_sha256_process() 209 local.W[i] = MBEDTLS_GET_UINT32_BE( data, 4 * i ); in mbedtls_internal_sha256_process()
|
A D | nist_kw.c | 438 Plen = MBEDTLS_GET_UINT32_BE( A, KW_SEMIBLOCK_LENGTH / 2 ); in mbedtls_nist_kw_unwrap()
|
Completed in 30 milliseconds