Lines Matching full:rounds
30 int rounds, int blocks);
32 int rounds, int blocks);
35 int rounds, int blocks, u8 iv[]);
37 int rounds, int blocks, u8 iv[]);
39 int rounds, int bytes, u8 const iv[]);
41 int rounds, int bytes, u8 const iv[]);
44 int rounds, int blocks, u8 ctr[]);
47 int rounds, int bytes, u8 iv[],
50 int rounds, int bytes, u8 iv[],
60 * # of rounds specified by AES: in num_rounds()
61 * 128 bit key 10 rounds in num_rounds()
62 * 192 bit key 12 rounds in num_rounds()
63 * 256 bit key 14 rounds in num_rounds()
64 * => n byte key => 6 + (n/4) rounds in num_rounds()
448 int err, first, rounds = num_rounds(&ctx->key1); in xts_encrypt() local
487 ctx->key1.key_enc, rounds, nbytes, walk.iv, in xts_encrypt()
509 ctx->key1.key_enc, rounds, walk.nbytes, walk.iv, in xts_encrypt()
520 int err, first, rounds = num_rounds(&ctx->key1); in xts_decrypt() local
559 ctx->key1.key_dec, rounds, nbytes, walk.iv, in xts_decrypt()
581 ctx->key1.key_dec, rounds, walk.nbytes, walk.iv, in xts_decrypt()