Home
last modified time | relevance | path

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

/optee_os/core/arch/arm/crypto/
H A Daes_armv8a_ce.c99 static void make_dec_key(unsigned int round_count, in make_dec_key() argument
104 unsigned int j = round_count; in make_dec_key()
112 j = round_count; in make_dec_key()
123 unsigned int *round_count) in crypto_accel_aes_expand_keys() argument
141 *round_count = num_rounds; in crypto_accel_aes_expand_keys()
157 unsigned int round_count, in crypto_accel_aes_ecb_enc() argument
165 ce_aes_ecb_encrypt(out, in, key, round_count, block_count, 1); in crypto_accel_aes_ecb_enc()
170 unsigned int round_count, in crypto_accel_aes_ecb_dec() argument
178 ce_aes_ecb_decrypt(out, in, key, round_count, block_count, 1); in crypto_accel_aes_ecb_dec()
183 unsigned int round_count, in crypto_accel_aes_cbc_enc() argument
[all …]
/optee_os/core/include/crypto/
H A Dcrypto_accel.h14 unsigned int *round_count);
17 unsigned int round_count,
20 unsigned int round_count,
24 unsigned int round_count,
27 unsigned int round_count,
31 unsigned int round_count,
35 unsigned int round_count,
39 unsigned int round_count,
/optee_os/lib/libmbedtls/core/
H A Daes.c38 sizeof(ctx->key), &ctx->round_count)) in mbedtls_aes_setkey_enc()
55 sizeof(ctx->key), &ctx->round_count)) in mbedtls_aes_setkey_dec()
H A Daes_ecb.c136 ctx->round_count, 1); in mbedtls_aes_crypt_ecb()
139 ctx->round_count, 1); in mbedtls_aes_crypt_ecb()
H A Daes_cbc.c136 ctx->round_count, length / 16, iv); in mbedtls_aes_crypt_cbc()
139 ctx->round_count, length / 16, iv); in mbedtls_aes_crypt_cbc()
H A Daes_ctr.c128 ctx->round_count, 1, nonce_counter); in next_ctr()
157 ctx->key, ctx->round_count, in mbedtls_aes_crypt_ctr()
/optee_os/core/lib/libtomcrypt/
H A Daes_accel.c59 unsigned int round_count = 0; in rijndael_setup() local
73 &round_count)) in rijndael_setup()
76 if (num_rounds && (unsigned int)num_rounds != round_count) in rijndael_setup()
79 skey->rijndael.Nr = round_count; in rijndael_setup()
/optee_os/lib/libmbedtls/include/
H A Daes_alt.h9 unsigned int round_count; member