Lines Matching defs:nrounds
54 uint32_t nrounds)
58 aes_sse2_4x32_setkey(enc->aese_aes.aes_rk, key, nrounds);
64 uint32_t nrounds)
72 aes_sse2_4x32_setkey(dec->aesd_aes.aes_rk, key, nrounds);
78 uint8_t out[static 16], uint32_t nrounds)
82 aes_sse2_4x32_enc(enc, in, out, nrounds);
88 uint8_t out[static 16], uint32_t nrounds)
92 aes_sse2_4x32_dec(dec, in, out, nrounds);
99 size_t nbytes, uint8_t iv[static 16], uint32_t nrounds)
105 aes_sse2_4x32_cbc_enc(enc, in, out, nbytes, iv, nrounds);
112 size_t nbytes, uint8_t iv[static 16], uint32_t nrounds)
118 aes_sse2_4x32_cbc_dec(dec, in, out, nbytes, iv, nrounds);
125 size_t nbytes, uint8_t tweak[static 16], uint32_t nrounds)
131 aes_sse2_4x32_xts_enc(enc, in, out, nbytes, tweak, nrounds);
138 size_t nbytes, uint8_t tweak[static 16], uint32_t nrounds)
144 aes_sse2_4x32_xts_dec(dec, in, out, nbytes, tweak, nrounds);
151 uint32_t nrounds)
155 aes_sse2_4x32_cbcmac_update1(enc, in, nbytes, auth, nrounds);
162 size_t nbytes, uint8_t authctr[32], uint32_t nrounds)
166 aes_sse2_4x32_ccm_enc1(enc, in, out, nbytes, authctr, nrounds);
173 size_t nbytes, uint8_t authctr[32], uint32_t nrounds)
177 aes_sse2_4x32_ccm_dec1(enc, in, out, nbytes, authctr, nrounds);