Searched refs:inbuf (Results 1 – 3 of 3) sorted by relevance
/crypto/ |
D | cast6_generic.c | 184 void __cast6_encrypt(struct cast6_ctx *c, u8 *outbuf, const u8 *inbuf) in __cast6_encrypt() argument 186 const __be32 *src = (const __be32 *)inbuf; in __cast6_encrypt() 217 static void cast6_encrypt(struct crypto_tfm *tfm, u8 *outbuf, const u8 *inbuf) in cast6_encrypt() argument 219 __cast6_encrypt(crypto_tfm_ctx(tfm), outbuf, inbuf); in cast6_encrypt() 222 void __cast6_decrypt(struct cast6_ctx *c, u8 *outbuf, const u8 *inbuf) in __cast6_decrypt() argument 224 const __be32 *src = (const __be32 *)inbuf; in __cast6_decrypt() 255 static void cast6_decrypt(struct crypto_tfm *tfm, u8 *outbuf, const u8 *inbuf) in cast6_decrypt() argument 257 __cast6_decrypt(crypto_tfm_ctx(tfm), outbuf, inbuf); in cast6_decrypt()
|
D | tgr192.c | 514 static int tgr192_update(struct shash_desc *desc, const u8 *inbuf, in tgr192_update() argument 524 if (!inbuf) { in tgr192_update() 529 tctx->hash[tctx->count++] = *inbuf++; in tgr192_update() 539 tgr192_transform(tctx, inbuf); in tgr192_update() 543 inbuf += 64; in tgr192_update() 546 tctx->hash[tctx->count++] = *inbuf++; in tgr192_update()
|
D | cast5_generic.c | 311 void __cast5_encrypt(struct cast5_ctx *c, u8 *outbuf, const u8 *inbuf) in __cast5_encrypt() argument 313 const __be32 *src = (const __be32 *)inbuf; in __cast5_encrypt() 363 static void cast5_encrypt(struct crypto_tfm *tfm, u8 *outbuf, const u8 *inbuf) in cast5_encrypt() argument 365 __cast5_encrypt(crypto_tfm_ctx(tfm), outbuf, inbuf); in cast5_encrypt() 368 void __cast5_decrypt(struct cast5_ctx *c, u8 *outbuf, const u8 *inbuf) in __cast5_decrypt() argument 370 const __be32 *src = (const __be32 *)inbuf; in __cast5_decrypt() 407 static void cast5_decrypt(struct crypto_tfm *tfm, u8 *outbuf, const u8 *inbuf) in cast5_decrypt() argument 409 __cast5_decrypt(crypto_tfm_ctx(tfm), outbuf, inbuf); in cast5_decrypt()
|