Searched refs:AVRC4 (Results 1 – 5 of 5) sorted by relevance
/third_party/ffmpeg/libavutil/ |
D | rc4.h | 32 typedef struct AVRC4 { struct 35 } AVRC4; argument 40 AVRC4 *av_rc4_alloc(void); 49 int av_rc4_init(struct AVRC4 *d, const uint8_t *key, int key_bits, int decrypt); 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 | 28 AVRC4 *av_rc4_alloc(void) in av_rc4_alloc() 30 return av_mallocz(sizeof(struct AVRC4)); in av_rc4_alloc() 33 int av_rc4_init(AVRC4 *r, const uint8_t *key, int key_bits, int decrypt) { in av_rc4_init() 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()
|
/third_party/ffmpeg/libavformat/ |
D | rtmpcrypt.c | 46 struct AVRC4 key_in; ///< RC4 key used for decrypt data 47 struct AVRC4 key_out; ///< RC4 key used for encrypt data
|
D | asfcrypt.c | 150 struct AVRC4 *rc4; in ff_asfcrypt_dec()
|
/third_party/ffmpeg/tools/ |
D | crypto_bench.c | 176 static struct AVRC4 *rc4; in run_lavu_rc4()
|