Lines Matching refs:Stream
944 \subsection{Stream Termination}
945 To terminate an open stream call the done function.
952 This will terminate the stream (by terminating the cipher) and return \textbf{CRYPT\_OK} if successful.
1017 /* terminate the stream */
1166 The \textit{header} data is meant to be meta--data associated with a stream that isn't private (e.g., protocol messages). It can
1167 be added at anytime during an EAX stream, and is part of the authentication tag. That is, changes in the meta-data can be detected by changes in the output tag.
1217 the eax\_init() function allows you to add initial header data to the stream you can also add header data during the
1218 EAX stream with the following.
1349 This mode has no \textit{Associated Data} like EAX mode does which means you cannot authenticate metadata along with the stream.
1382 This will terminate an encrypt stream \textit{ocb}. If you have trailing bytes of plaintext that will not complete a block
1389 To terminate a decrypt stream and compared the tag you call the following.
1546 A GCM stream is meant to be processed in three modes, one after another. First, the initial vector (per session) data is processed. This should be
2851 \hline RC4 & rc4\_desc & Stream Cipher \\
2852 \hline SOBER-128 & sober128\_desc & Stream Cipher (also very fast PRNG) \\
2887 RC4 is an old stream cipher that can also double duty as a PRNG in a pinch. You key RC4 by
2899 SOBER--128 is a stream cipher designed by the QUALCOMM Australia team. Like RC4, you key it by
2915 simulations which need a high quality (and fast) stream of bytes.
4855 common e-mail, usenet and HTTP mediums. The format of an encoded stream is just a literal sequence of ASCII characters
5264 CTR'ing a long stream process it in blocks of (say) four kilobytes and handle any remaining incomplete blocks at the end of the stream.