Home
last modified time | relevance | path

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

/mbedtls-3.6.0/programs/aes/
Dcrypt_and_hash.c80 unsigned int cipher_block_size; in main() local
230 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 …]