Home
last modified time | relevance | path

Searched refs:av_rc4_crypt (Results 1 – 5 of 5) sorted by relevance

/third_party/ffmpeg/libavformat/
Drtmpcrypt.c229 av_rc4_crypt(&rt->key_in, buf, NULL, sizeof(buf), NULL, 1); in ff_rtmpe_update_keystream()
230 av_rc4_crypt(&rt->key_out, buf, NULL, sizeof(buf), NULL, 1); in ff_rtmpe_update_keystream()
291 av_rc4_crypt(&rt->key_in, buf, buf, ret, NULL, 1); in rtmpe_read()
304 av_rc4_crypt(&rt->key_out, (uint8_t *)buf, buf, size, NULL, 1); in rtmpe_write()
Dasfcrypt.c172 av_rc4_crypt(rc4, (uint8_t *)rc4buff, NULL, sizeof(rc4buff), NULL, 1); in ff_asfcrypt_dec()
182 av_rc4_crypt(rc4, data, data, len, NULL, 1); in ff_asfcrypt_dec()
/third_party/ffmpeg/libavutil/
Drc4.h60 void av_rc4_crypt(struct AVRC4 *d, uint8_t *dst, const uint8_t *src, int count, uint8_t *iv, int de…
Drc4.c54 void av_rc4_crypt(AVRC4 *r, uint8_t *dst, const uint8_t *src, int count, uint8_t *iv, int decrypt) { in av_rc4_crypt() function
/third_party/ffmpeg/tools/
Dcrypto_bench.c180 av_rc4_crypt(rc4, output, input, size, NULL, 0); in run_lavu_rc4()