Lines Matching refs:rounds
77 int rounds, int blocks);
79 int rounds, int blocks);
82 int rounds, int blocks, u8 iv[]);
84 int rounds, int blocks, u8 iv[]);
87 int rounds, int bytes, u8 const iv[]);
89 int rounds, int bytes, u8 const iv[]);
92 int rounds, int bytes, u8 ctr[], u8 finalbuf[]);
95 int rounds, int bytes, u32 const rk2[], u8 iv[],
98 int rounds, int bytes, u32 const rk2[], u8 iv[],
102 int rounds, int blocks, u8 iv[],
105 int rounds, int blocks, u8 iv[],
108 asmlinkage int aes_mac_update(u8 const in[], u32 const rk[], int rounds,
179 int err, rounds = 6 + ctx->key_length / 4; in ecb_encrypt() local
188 ctx->key_enc, rounds, blocks); in ecb_encrypt()
199 int err, rounds = 6 + ctx->key_length / 4; in ecb_decrypt() local
208 ctx->key_dec, rounds, blocks); in ecb_decrypt()
220 int err = 0, rounds = 6 + ctx->key_length / 4; in cbc_encrypt_walk() local
226 ctx->key_enc, rounds, blocks, walk->iv); in cbc_encrypt_walk()
249 int err = 0, rounds = 6 + ctx->key_length / 4; in cbc_decrypt_walk() local
255 ctx->key_dec, rounds, blocks, walk->iv); in cbc_decrypt_walk()
277 int err, rounds = 6 + ctx->key_length / 4; in cts_cbc_encrypt() local
324 ctx->key_enc, rounds, walk.nbytes, walk.iv); in cts_cbc_encrypt()
334 int err, rounds = 6 + ctx->key_length / 4; in cts_cbc_decrypt() local
381 ctx->key_dec, rounds, walk.nbytes, walk.iv); in cts_cbc_decrypt()
407 int err, rounds = 6 + ctx->key1.key_length / 4; in essiv_cbc_encrypt() local
417 ctx->key1.key_enc, rounds, blocks, in essiv_cbc_encrypt()
429 int err, rounds = 6 + ctx->key1.key_length / 4; in essiv_cbc_decrypt() local
439 ctx->key1.key_dec, rounds, blocks, in essiv_cbc_decrypt()
451 int err, rounds = 6 + ctx->key_length / 4; in ctr_encrypt() local
469 aes_ctr_encrypt(dst, src, ctx->key_enc, rounds, nbytes, in ctr_encrypt()
492 int err, first, rounds = 6 + ctx->key1.key_length / 4; in xts_encrypt() local
531 ctx->key1.key_enc, rounds, nbytes, in xts_encrypt()
553 ctx->key1.key_enc, rounds, walk.nbytes, in xts_encrypt()
564 int err, first, rounds = 6 + ctx->key1.key_length / 4; in xts_decrypt() local
603 ctx->key1.key_dec, rounds, nbytes, in xts_decrypt()
626 ctx->key1.key_dec, rounds, walk.nbytes, in xts_decrypt()
753 int rounds = 6 + key_len / 4; in cmac_setkey() local
763 rounds, 1); in cmac_setkey()
782 int rounds = 6 + key_len / 4; in xcbc_setkey() local
791 aes_ecb_encrypt(key, ks[0], ctx->key.key_enc, rounds, 1); in xcbc_setkey()
792 aes_ecb_encrypt(ctx->consts, ks[1], ctx->key.key_enc, rounds, 2); in xcbc_setkey()
811 int rounds = 6 + ctx->key_length / 4; in mac_do_update() local
818 rem = aes_mac_update(in, ctx->key_enc, rounds, blocks, in mac_do_update()