Searched refs:av_rc4_crypt (Results 1 – 5 of 5) sorted by relevance
/third_party/ffmpeg/libavformat/ |
D | rtmpcrypt.c | 229 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()
|
D | asfcrypt.c | 172 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/ |
D | rc4.h | 60 void av_rc4_crypt(struct AVRC4 *d, uint8_t *dst, const uint8_t *src, int count, uint8_t *iv, int de…
|
D | rc4.c | 54 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/ |
D | crypto_bench.c | 180 av_rc4_crypt(rc4, output, input, size, NULL, 0); in run_lavu_rc4()
|