Searched refs:num_aes_blocks (Results 1 – 3 of 3) sorted by relevance
/external/u-boot/arch/arm/mach-tegra/tegra20/ |
D | crypto.c | 49 u32 num_aes_blocks) in sign_object() argument 72 for (i = 0; i < num_aes_blocks; i++) { in sign_object() 77 if (i == num_aes_blocks - 1) in sign_object() 83 debug("sign_obj: block %d of %d\n", i, num_aes_blocks); in sign_object() 103 u32 num_aes_blocks; in encrypt_and_sign() local 115 num_aes_blocks = (length + AES_KEY_LENGTH - 1) / AES_KEY_LENGTH; in encrypt_and_sign() 121 num_aes_blocks); in encrypt_and_sign() 128 sign_object(key, key_schedule, src, sig_dst, num_aes_blocks); in encrypt_and_sign()
|
/external/u-boot/lib/ |
D | aes.c | 604 u32 num_aes_blocks) in aes_cbc_encrypt_blocks() argument 610 for (i = 0; i < num_aes_blocks; i++) { in aes_cbc_encrypt_blocks() 611 debug("encrypt_object: block %d of %d\n", i, num_aes_blocks); in aes_cbc_encrypt_blocks() 630 u32 num_aes_blocks) in aes_cbc_decrypt_blocks() argument 638 for (i = 0; i < num_aes_blocks; i++) { in aes_cbc_decrypt_blocks() 639 debug("encrypt_object: block %d of %d\n", i, num_aes_blocks); in aes_cbc_decrypt_blocks()
|
/external/u-boot/include/ |
D | uboot_aes.h | 83 u32 num_aes_blocks); 95 u32 num_aes_blocks);
|