Lines Matching defs:outbuf
303 void __cast5_encrypt(struct cast5_ctx *c, u8 *outbuf, const u8 *inbuf)
348 put_unaligned_be32(r, outbuf);
349 put_unaligned_be32(l, outbuf + 4);
353 static void cast5_encrypt(struct crypto_tfm *tfm, u8 *outbuf, const u8 *inbuf)
355 __cast5_encrypt(crypto_tfm_ctx(tfm), outbuf, inbuf);
358 void __cast5_decrypt(struct cast5_ctx *c, u8 *outbuf, const u8 *inbuf)
390 put_unaligned_be32(r, outbuf);
391 put_unaligned_be32(l, outbuf + 4);
395 static void cast5_decrypt(struct crypto_tfm *tfm, u8 *outbuf, const u8 *inbuf)
397 __cast5_decrypt(crypto_tfm_ctx(tfm), outbuf, inbuf);