Searched refs:cipher_block_size (Results 1 – 1 of 1) sorted by relevance
80 unsigned int cipher_block_size; in main() local234 cipher_block_size = mbedtls_cipher_get_block_size(&cipher_ctx); in main()330 for (offset = 0; offset < filesize; offset += cipher_block_size) { in main()331 ilen = ((unsigned int) filesize - offset > cipher_block_size) ? in main()332 cipher_block_size : (unsigned int) (filesize - offset); in main()398 if (cipher_block_size == 0) { in main()411 ((filesize - md_size) % cipher_block_size) != 0) { in main()413 cipher_block_size); in main()484 for (offset = 0; offset < filesize; offset += cipher_block_size) { in main()485 ilen = ((unsigned int) filesize - offset > cipher_block_size) ? in main()[all …]