Searched refs:inbuf (Results 1 – 4 of 4) sorted by relevance
/crypto/ |
D | cast6_generic.c | 172 void __cast6_encrypt(const void *ctx, u8 *outbuf, const u8 *inbuf) in __cast6_encrypt() argument 175 const __be32 *src = (const __be32 *)inbuf; in __cast6_encrypt() 206 static void cast6_encrypt(struct crypto_tfm *tfm, u8 *outbuf, const u8 *inbuf) in cast6_encrypt() argument 208 __cast6_encrypt(crypto_tfm_ctx(tfm), outbuf, inbuf); in cast6_encrypt() 211 void __cast6_decrypt(const void *ctx, u8 *outbuf, const u8 *inbuf) in __cast6_decrypt() argument 214 const __be32 *src = (const __be32 *)inbuf; in __cast6_decrypt() 245 static void cast6_decrypt(struct crypto_tfm *tfm, u8 *outbuf, const u8 *inbuf) in cast6_decrypt() argument 247 __cast6_decrypt(crypto_tfm_ctx(tfm), outbuf, inbuf); in cast6_decrypt()
|
D | tgr192.c | 509 static int tgr192_update(struct shash_desc *desc, const u8 *inbuf, in tgr192_update() argument 519 if (!inbuf) { in tgr192_update() 524 tctx->hash[tctx->count++] = *inbuf++; in tgr192_update() 534 tgr192_transform(tctx, inbuf); in tgr192_update() 538 inbuf += 64; in tgr192_update() 541 tctx->hash[tctx->count++] = *inbuf++; in tgr192_update()
|
D | cast5_generic.c | 303 void __cast5_encrypt(struct cast5_ctx *c, u8 *outbuf, const u8 *inbuf) in __cast5_encrypt() argument 305 const __be32 *src = (const __be32 *)inbuf; in __cast5_encrypt() 355 static void cast5_encrypt(struct crypto_tfm *tfm, u8 *outbuf, const u8 *inbuf) in cast5_encrypt() argument 357 __cast5_encrypt(crypto_tfm_ctx(tfm), outbuf, inbuf); in cast5_encrypt() 360 void __cast5_decrypt(struct cast5_ctx *c, u8 *outbuf, const u8 *inbuf) in __cast5_decrypt() argument 362 const __be32 *src = (const __be32 *)inbuf; in __cast5_decrypt() 399 static void cast5_decrypt(struct crypto_tfm *tfm, u8 *outbuf, const u8 *inbuf) in cast5_decrypt() argument 401 __cast5_decrypt(crypto_tfm_ctx(tfm), outbuf, inbuf); in cast5_decrypt()
|
D | drbg.c | 314 u8 *inbuf, u32 inbuflen, 1813 u8 *inbuf, u32 inlen, in drbg_kcapi_sym_ctr() argument 1820 if (inbuf) { in drbg_kcapi_sym_ctr() 1822 sg_set_buf(sg_in, inbuf, inlen); in drbg_kcapi_sym_ctr()
|