Lines Matching refs:rounds

78 				int rounds, int blocks);
80 int rounds, int blocks);
83 int rounds, int blocks, u8 iv[]);
85 int rounds, int blocks, u8 iv[]);
88 int rounds, int bytes, u8 const iv[]);
90 int rounds, int bytes, u8 const iv[]);
93 int rounds, int bytes, u8 ctr[]);
96 int rounds, int bytes, u8 ctr[], int byte_ctr);
99 int rounds, int bytes, u32 const rk2[], u8 iv[],
102 int rounds, int bytes, u32 const rk2[], u8 iv[],
106 int rounds, int blocks, u8 iv[],
109 int rounds, int blocks, u8 iv[],
112 asmlinkage int aes_mac_update(u8 const in[], u32 const rk[], int rounds,
183 int err, rounds = 6 + ctx->key_length / 4; in ecb_encrypt() local
192 ctx->key_enc, rounds, blocks); in ecb_encrypt()
203 int err, rounds = 6 + ctx->key_length / 4; in ecb_decrypt() local
212 ctx->key_dec, rounds, blocks); in ecb_decrypt()
224 int err = 0, rounds = 6 + ctx->key_length / 4; in cbc_encrypt_walk() local
230 ctx->key_enc, rounds, blocks, walk->iv); in cbc_encrypt_walk()
253 int err = 0, rounds = 6 + ctx->key_length / 4; in cbc_decrypt_walk() local
259 ctx->key_dec, rounds, blocks, walk->iv); in cbc_decrypt_walk()
281 int err, rounds = 6 + ctx->key_length / 4; in cts_cbc_encrypt() local
328 ctx->key_enc, rounds, walk.nbytes, walk.iv); in cts_cbc_encrypt()
338 int err, rounds = 6 + ctx->key_length / 4; in cts_cbc_decrypt() local
385 ctx->key_dec, rounds, walk.nbytes, walk.iv); in cts_cbc_decrypt()
411 int err, rounds = 6 + ctx->key1.key_length / 4; in essiv_cbc_encrypt() local
421 ctx->key1.key_enc, rounds, blocks, in essiv_cbc_encrypt()
433 int err, rounds = 6 + ctx->key1.key_length / 4; in essiv_cbc_decrypt() local
443 ctx->key1.key_dec, rounds, blocks, in essiv_cbc_decrypt()
455 int err, rounds = 6 + ctx->key_length / 4; in xctr_encrypt() local
482 aes_xctr_encrypt(dst, src, ctx->key_enc, rounds, nbytes, in xctr_encrypt()
501 int err, rounds = 6 + ctx->key_length / 4; in ctr_encrypt() local
527 aes_ctr_encrypt(dst, src, ctx->key_enc, rounds, nbytes, in ctr_encrypt()
545 int err, first, rounds = 6 + ctx->key1.key_length / 4; in xts_encrypt() local
584 ctx->key1.key_enc, rounds, nbytes, in xts_encrypt()
606 ctx->key1.key_enc, rounds, walk.nbytes, in xts_encrypt()
617 int err, first, rounds = 6 + ctx->key1.key_length / 4; in xts_decrypt() local
656 ctx->key1.key_dec, rounds, nbytes, in xts_decrypt()
679 ctx->key1.key_dec, rounds, walk.nbytes, in xts_decrypt()
822 int rounds = 6 + key_len / 4; in cmac_setkey() local
832 rounds, 1); in cmac_setkey()
851 int rounds = 6 + key_len / 4; in xcbc_setkey() local
860 aes_ecb_encrypt(key, ks[0], ctx->key.key_enc, rounds, 1); in xcbc_setkey()
861 aes_ecb_encrypt(ctx->consts, ks[1], ctx->key.key_enc, rounds, 2); in xcbc_setkey()
880 int rounds = 6 + ctx->key_length / 4; in mac_do_update() local
887 rem = aes_mac_update(in, ctx->key_enc, rounds, blocks, in mac_do_update()