Lines Matching defs:out
255 * @out: Buffer to store the ciphertext
258 void aes_encrypt(const struct crypto_aes_ctx *ctx, u8 *out, const u8 *in)
296 put_unaligned_le32(subshift(st1, 0) ^ rkp[4], out);
297 put_unaligned_le32(subshift(st1, 1) ^ rkp[5], out + 4);
298 put_unaligned_le32(subshift(st1, 2) ^ rkp[6], out + 8);
299 put_unaligned_le32(subshift(st1, 3) ^ rkp[7], out + 12);
306 * @out: Buffer to store the plaintext
309 void aes_decrypt(const struct crypto_aes_ctx *ctx, u8 *out, const u8 *in)
347 put_unaligned_le32(inv_subshift(st1, 0) ^ rkp[4], out);
348 put_unaligned_le32(inv_subshift(st1, 1) ^ rkp[5], out + 4);
349 put_unaligned_le32(inv_subshift(st1, 2) ^ rkp[6], out + 8);
350 put_unaligned_le32(inv_subshift(st1, 3) ^ rkp[7], out + 12);