Lines Matching refs:j
106 size_t i, j, blocks; in crypto_cipher_encrypt() local
121 for (j = 0; j < AES_BLOCK_SIZE; j++) in crypto_cipher_encrypt()
122 ctx->u.aes.cbc[j] ^= plain[j]; in crypto_cipher_encrypt()
135 for (j = 0; j < 8; j++) in crypto_cipher_encrypt()
136 ctx->u.des3.cbc[j] ^= plain[j]; in crypto_cipher_encrypt()
149 for (j = 0; j < 8; j++) in crypto_cipher_encrypt()
150 ctx->u.des3.cbc[j] ^= plain[j]; in crypto_cipher_encrypt()
169 size_t i, j, blocks; in crypto_cipher_decrypt() local
187 for (j = 0; j < AES_BLOCK_SIZE; j++) in crypto_cipher_decrypt()
188 plain[j] ^= ctx->u.aes.cbc[j]; in crypto_cipher_decrypt()
201 for (j = 0; j < 8; j++) in crypto_cipher_decrypt()
202 plain[j] ^= ctx->u.des3.cbc[j]; in crypto_cipher_decrypt()
215 for (j = 0; j < 8; j++) in crypto_cipher_decrypt()
216 plain[j] ^= ctx->u.des.cbc[j]; in crypto_cipher_decrypt()