Home
last modified time | relevance | path

Searched refs:stream (Results 1 – 2 of 2) sorted by relevance

/crypto/
Ddeflate.c49 struct z_stream_s *stream = &ctx->comp_stream; in deflate_comp_init() local
51 stream->workspace = vmalloc(zlib_deflate_workspacesize()); in deflate_comp_init()
52 if (!stream->workspace ) { in deflate_comp_init()
56 memset(stream->workspace, 0, zlib_deflate_workspacesize()); in deflate_comp_init()
57 ret = zlib_deflateInit2(stream, DEFLATE_DEF_LEVEL, Z_DEFLATED, in deflate_comp_init()
67 vfree(stream->workspace); in deflate_comp_init()
74 struct z_stream_s *stream = &ctx->decomp_stream; in deflate_decomp_init() local
76 stream->workspace = kzalloc(zlib_inflate_workspacesize(), GFP_KERNEL); in deflate_decomp_init()
77 if (!stream->workspace ) { in deflate_decomp_init()
81 ret = zlib_inflateInit2(stream, -DEFLATE_DEF_WINBITS); in deflate_decomp_init()
[all …]
DKconfig493 ARC4 is a stream cipher using keys ranging from 8 bits to 2048
567 tristate "Salsa20 stream cipher algorithm (EXPERIMENTAL)"
571 Salsa20 stream cipher algorithm.
573 Salsa20 is a stream cipher submitted to eSTREAM, the ECRYPT
574 Stream Cipher Project. See <http://www.ecrypt.eu.org/stream/>
576 The Salsa20 stream cipher algorithm is designed by Daniel J.
580 tristate "Salsa20 stream cipher algorithm (i586) (EXPERIMENTAL)"
585 Salsa20 stream cipher algorithm.
587 Salsa20 is a stream cipher submitted to eSTREAM, the ECRYPT
588 Stream Cipher Project. See <http://www.ecrypt.eu.org/stream/>
[all …]