Searched refs:inbuf (Results 1 – 3 of 3) sorted by relevance
/crypto/ |
D | cast6_generic.c | 172 void __cast6_encrypt(const void *ctx, u8 *outbuf, const u8 *inbuf) in __cast6_encrypt() argument 179 block[0] = get_unaligned_be32(inbuf); in __cast6_encrypt() 180 block[1] = get_unaligned_be32(inbuf + 4); in __cast6_encrypt() 181 block[2] = get_unaligned_be32(inbuf + 8); in __cast6_encrypt() 182 block[3] = get_unaligned_be32(inbuf + 12); in __cast6_encrypt() 204 static void cast6_encrypt(struct crypto_tfm *tfm, u8 *outbuf, const u8 *inbuf) in cast6_encrypt() argument 206 __cast6_encrypt(crypto_tfm_ctx(tfm), outbuf, inbuf); in cast6_encrypt() 209 void __cast6_decrypt(const void *ctx, u8 *outbuf, const u8 *inbuf) in __cast6_decrypt() argument 216 block[0] = get_unaligned_be32(inbuf); in __cast6_decrypt() 217 block[1] = get_unaligned_be32(inbuf + 4); in __cast6_decrypt() [all …]
|
D | cast5_generic.c | 303 void __cast5_encrypt(struct cast5_ctx *c, u8 *outbuf, const u8 *inbuf) in __cast5_encrypt() argument 316 l = get_unaligned_be32(inbuf); in __cast5_encrypt() 317 r = get_unaligned_be32(inbuf + 4); in __cast5_encrypt() 353 static void cast5_encrypt(struct crypto_tfm *tfm, u8 *outbuf, const u8 *inbuf) in cast5_encrypt() argument 355 __cast5_encrypt(crypto_tfm_ctx(tfm), outbuf, inbuf); in cast5_encrypt() 358 void __cast5_decrypt(struct cast5_ctx *c, u8 *outbuf, const u8 *inbuf) in __cast5_decrypt() argument 368 l = get_unaligned_be32(inbuf); in __cast5_decrypt() 369 r = get_unaligned_be32(inbuf + 4); in __cast5_decrypt() 395 static void cast5_decrypt(struct crypto_tfm *tfm, u8 *outbuf, const u8 *inbuf) in cast5_decrypt() argument 397 __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()
|