Home | History | Annotate | Download | only in libtomcrypt

Lines Matching refs:RC4

197 The RC2 and RC4 symmetric ciphers are not under patents but are under trademark regulations.  This means you can use 
2851 \hline RC4 & rc4\_desc & Stream Cipher \\
2885 \subsubsection{RC4}
2887 RC4 is an old stream cipher that can also double duty as a PRNG in a pinch. You key RC4 by
2891 When you read from RC4, the output is XOR'ed against your buffer you provide. In this manner, you can use rc4\_read()
2894 You really should not use RC4. This is not because RC4 is weak, (though biases are known to exist) but simply due to
2899 SOBER--128 is a stream cipher designed by the QUALCOMM Australia team. Like RC4, you key it by
2910 Like RC4, the output of SOBER--128 is XOR'ed against the buffer you provide it. In this manner, you can use
2913 Since SOBER-128 has a fixed keying scheme, and is very fast (faster than RC4) the ideal usage of SOBER-128 is to
2928 printf("RC4 init error: %s\n", error_to_string(err));
2934 printf("RC4 add entropy error: %s\n", error_to_string(err));
2938 /* setup RC4 for use */
2940 printf("RC4 ready error: %s\n", error_to_string(err));
2947 printf("RC4 read error\n");