Lines Matching refs:rc4
176 static struct AVRC4 *rc4; in run_lavu_rc4() local
177 if (!rc4 && !(rc4 = av_rc4_alloc())) in run_lavu_rc4()
179 av_rc4_init(rc4, hardcoded_key, 128, 0); in run_lavu_rc4()
180 av_rc4_crypt(rc4, output, input, size, NULL, 0); in run_lavu_rc4()
283 RC4_KEY rc4; in run_crypto_rc4() local
285 RC4_set_key(&rc4, 16, hardcoded_key); in run_crypto_rc4()
286 RC4(&rc4, size, input, output); in run_crypto_rc4()
332 DEFINE_GCRYPT_CYPHER_WRAPPER(rc4, ARCFOUR, STREAM, 16)
423 mbedtls_arc4_context rc4; in run_mbedcrypto_rc4() local
425 mbedtls_arc4_init(&rc4); in run_mbedcrypto_rc4()
426 mbedtls_arc4_setup(&rc4, hardcoded_key, 16); in run_mbedcrypto_rc4()
427 mbedtls_arc4_crypt(&rc4, size, input, output); in run_mbedcrypto_rc4()
428 mbedtls_arc4_free(&rc4); in run_mbedcrypto_rc4()
534 rc4_state rc4; in run_tomcrypt_rc4() local
536 rc4_stream_setup(&rc4, hardcoded_key, 16); in run_tomcrypt_rc4()
537 rc4_stream_crypt(&rc4, input, size, output); in run_tomcrypt_rc4()
538 rc4_stream_done(&rc4); in run_tomcrypt_rc4()
660 IMPL_ALL("RC4", rc4, "crc:538d37b2")