Lines Matching full:rounds

75 				int rounds, int blocks);
77 int rounds, int blocks);
80 int rounds, int blocks, u8 iv[]);
82 int rounds, int blocks, u8 iv[]);
85 int rounds, int bytes, u8 const iv[]);
87 int rounds, int bytes, u8 const iv[]);
90 int rounds, int blocks, u8 ctr[]);
93 int rounds, int bytes, u32 const rk2[], u8 iv[],
96 int rounds, int bytes, u32 const rk2[], u8 iv[],
100 int rounds, int blocks, u8 iv[],
103 int rounds, int blocks, u8 iv[],
106 asmlinkage void aes_mac_update(u8 const in[], u32 const rk[], int rounds,
177 int err, rounds = 6 + ctx->key_length / 4; in ecb_encrypt() local
186 ctx->key_enc, rounds, blocks); in ecb_encrypt()
197 int err, rounds = 6 + ctx->key_length / 4; in ecb_decrypt() local
206 ctx->key_dec, rounds, blocks); in ecb_decrypt()
218 int err = 0, rounds = 6 + ctx->key_length / 4; in cbc_encrypt_walk() local
224 ctx->key_enc, rounds, blocks, walk->iv); in cbc_encrypt_walk()
247 int err = 0, rounds = 6 + ctx->key_length / 4; in cbc_decrypt_walk() local
253 ctx->key_dec, rounds, blocks, walk->iv); in cbc_decrypt_walk()
275 int err, rounds = 6 + ctx->key_length / 4; in cts_cbc_encrypt() local
322 ctx->key_enc, rounds, walk.nbytes, walk.iv); in cts_cbc_encrypt()
332 int err, rounds = 6 + ctx->key_length / 4; in cts_cbc_decrypt() local
379 ctx->key_dec, rounds, walk.nbytes, walk.iv); in cts_cbc_decrypt()
405 int err, rounds = 6 + ctx->key1.key_length / 4; in essiv_cbc_encrypt() local
415 ctx->key1.key_enc, rounds, blocks, in essiv_cbc_encrypt()
427 int err, rounds = 6 + ctx->key1.key_length / 4; in essiv_cbc_decrypt() local
437 ctx->key1.key_dec, rounds, blocks, in essiv_cbc_decrypt()
449 int err, rounds = 6 + ctx->key_length / 4; in ctr_encrypt() local
458 ctx->key_enc, rounds, blocks, walk.iv); in ctr_encrypt()
474 aes_ctr_encrypt(tail, NULL, ctx->key_enc, rounds, in ctr_encrypt()
511 int err, first, rounds = 6 + ctx->key1.key_length / 4; in xts_encrypt() local
550 ctx->key1.key_enc, rounds, nbytes, in xts_encrypt()
572 ctx->key1.key_enc, rounds, walk.nbytes, in xts_encrypt()
583 int err, first, rounds = 6 + ctx->key1.key_length / 4; in xts_decrypt() local
622 ctx->key1.key_dec, rounds, nbytes, in xts_decrypt()
645 ctx->key1.key_dec, rounds, walk.nbytes, in xts_decrypt()
794 int rounds = 6 + key_len / 4; in cmac_setkey() local
804 rounds, 1); in cmac_setkey()
823 int rounds = 6 + key_len / 4; in xcbc_setkey() local
832 aes_ecb_encrypt(key, ks[0], ctx->key.key_enc, rounds, 1); in xcbc_setkey()
833 aes_ecb_encrypt(ctx->consts, ks[1], ctx->key.key_enc, rounds, 2); in xcbc_setkey()
852 int rounds = 6 + ctx->key_length / 4; in mac_do_update() local
856 aes_mac_update(in, ctx->key_enc, rounds, blocks, dg, enc_before, in mac_do_update()