Home
last modified time | relevance | path

Searched refs:inbuf (Results 1 – 4 of 4) sorted by relevance

/crypto/
A Dzstd.c110 zstd_in_buffer inbuf; in zstd_compress() local
151 inbuf.pos = 0; in zstd_compress()
152 inbuf.src = walk.src.virt.addr; in zstd_compress()
153 inbuf.size = scur; in zstd_compress()
159 num_bytes = zstd_compress_stream(ctx->cctx, &outbuf, &inbuf); in zstd_compress()
170 acomp_walk_done_src(&walk, inbuf.pos); in zstd_compress()
220 zstd_in_buffer inbuf; in zstd_decompress() local
241 inbuf.pos = 0; in zstd_decompress()
242 inbuf.size = scur; in zstd_decompress()
243 inbuf.src = walk.src.virt.addr; in zstd_decompress()
[all …]
A Dcast6_generic.c172 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()
206 __cast6_encrypt(crypto_tfm_ctx(tfm), outbuf, inbuf); in cast6_encrypt()
216 block[0] = get_unaligned_be32(inbuf); in __cast6_decrypt()
217 block[1] = get_unaligned_be32(inbuf + 4); in __cast6_decrypt()
218 block[2] = get_unaligned_be32(inbuf + 8); in __cast6_decrypt()
219 block[3] = get_unaligned_be32(inbuf + 12); in __cast6_decrypt()
[all …]
A Dcast5_generic.c303 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()
A Ddrbg.c304 u8 *inbuf, u32 inbuflen,
1823 u8 *inbuf, u32 inlen, in drbg_kcapi_sym_ctr() argument
1830 if (inbuf) { in drbg_kcapi_sym_ctr()
1832 sg_set_buf(sg_in, inbuf, inlen); in drbg_kcapi_sym_ctr()

Completed in 10 milliseconds