Searched refs:cipher_block_size (Results 1 – 1 of 1) sorted by relevance
80 unsigned int cipher_block_size; in main() local230 cipher_block_size = mbedtls_cipher_get_block_size(&cipher_ctx); in main()326 for (offset = 0; offset < filesize; offset += cipher_block_size) { in main()327 ilen = ((unsigned int) filesize - offset > cipher_block_size) ? in main()328 cipher_block_size : (unsigned int) (filesize - offset); in main()394 if (cipher_block_size == 0) { in main()407 ((filesize - md_size) % cipher_block_size) != 0) { in main()409 cipher_block_size); in main()480 for (offset = 0; offset < filesize; offset += cipher_block_size) { in main()481 ilen = ((unsigned int) filesize - offset > cipher_block_size) ? in main()[all …]