Lines Matching defs:inbuf
172 void __cast6_encrypt(const void *ctx, u8 *outbuf, const u8 *inbuf)
179 block[0] = get_unaligned_be32(inbuf);
180 block[1] = get_unaligned_be32(inbuf + 4);
181 block[2] = get_unaligned_be32(inbuf + 8);
182 block[3] = get_unaligned_be32(inbuf + 12);
204 static void cast6_encrypt(struct crypto_tfm *tfm, u8 *outbuf, const u8 *inbuf)
206 __cast6_encrypt(crypto_tfm_ctx(tfm), outbuf, inbuf);
209 void __cast6_decrypt(const void *ctx, u8 *outbuf, const u8 *inbuf)
216 block[0] = get_unaligned_be32(inbuf);
217 block[1] = get_unaligned_be32(inbuf + 4);
218 block[2] = get_unaligned_be32(inbuf + 8);
219 block[3] = get_unaligned_be32(inbuf + 12);
241 static void cast6_decrypt(struct crypto_tfm *tfm, u8 *outbuf, const u8 *inbuf)
243 __cast6_decrypt(crypto_tfm_ctx(tfm), outbuf, inbuf);