Searched refs:full_blocks (Results 1 – 5 of 5) sorted by relevance
/optee_os/core/lib/libtomcrypt/src/encauth/ocb3/ |
A D | ocb3_add_aad.c | 54 int err, x, full_blocks, full_blocks_len, last_block_len; in ocb3_add_aad() local 85 full_blocks = datalen/ocb->block_len; in ocb3_add_aad() 86 full_blocks_len = full_blocks * ocb->block_len; in ocb3_add_aad() 89 for (x=0; x<full_blocks; x++) { in ocb3_add_aad()
|
A D | ocb3_decrypt_last.c | 31 int err, x, full_blocks, full_blocks_len, last_block_len; in ocb3_decrypt_last() local 44 full_blocks = ctlen/ocb->block_len; in ocb3_decrypt_last() 45 full_blocks_len = full_blocks * ocb->block_len; in ocb3_decrypt_last() 49 if (full_blocks>0) { in ocb3_decrypt_last()
|
A D | ocb3_encrypt_last.c | 31 int err, x, full_blocks, full_blocks_len, last_block_len; in ocb3_encrypt_last() local 44 full_blocks = ptlen/ocb->block_len; in ocb3_encrypt_last() 45 full_blocks_len = full_blocks * ocb->block_len; in ocb3_encrypt_last() 49 if (full_blocks>0) { in ocb3_encrypt_last()
|
A D | ocb3_decrypt.c | 30 int err, i, full_blocks; in ocb3_decrypt() local 49 full_blocks = ctlen/ocb->block_len; in ocb3_decrypt() 50 for(i=0; i<full_blocks; i++) { in ocb3_decrypt()
|
A D | ocb3_encrypt.c | 30 int err, i, full_blocks; in ocb3_encrypt() local 49 full_blocks = ptlen/ocb->block_len; in ocb3_encrypt() 50 for(i=0; i<full_blocks; i++) { in ocb3_encrypt()
|
Completed in 5 milliseconds