Lines Matching refs:rc4
84 #include "libavutil/rc4.h"
176 static struct AVRC4 *rc4;
177 if (!rc4 && !(rc4 = av_rc4_alloc()))
179 av_rc4_init(rc4, hardcoded_key, 128, 0);
180 av_rc4_crypt(rc4, output, input, size, NULL, 0);
208 #include <openssl/rc4.h>
283 RC4_KEY rc4;
285 RC4_set_key(&rc4, 16, hardcoded_key);
286 RC4(&rc4, size, input, output);
332 DEFINE_GCRYPT_CYPHER_WRAPPER(rc4, ARCFOUR, STREAM, 16)
423 mbedtls_arc4_context rc4;
425 mbedtls_arc4_init(&rc4);
426 mbedtls_arc4_setup(&rc4, hardcoded_key, 16);
427 mbedtls_arc4_crypt(&rc4, size, input, output);
428 mbedtls_arc4_free(&rc4);
534 rc4_state rc4;
536 rc4_stream_setup(&rc4, hardcoded_key, 16);
537 rc4_stream_crypt(&rc4, input, size, output);
538 rc4_stream_done(&rc4);
660 IMPL_ALL("RC4", rc4, "crc:538d37b2")