| 
    FFmpeg 7.1.2
    
   | 
 
Data Structures | |
| struct | AVRC4 | 
Functions | |
| AVRC4 * | av_rc4_alloc (void) | 
| Allocate an AVRC4 context.   | |
| int | av_rc4_init (struct AVRC4 *d, const uint8_t *key, int key_bits, int decrypt) | 
| Initializes an AVRC4 context.   | |
| void | av_rc4_crypt (struct AVRC4 *d, uint8_t *dst, const uint8_t *src, int count, uint8_t *iv, int decrypt) | 
| Encrypts / decrypts using the RC4 algorithm.   | |
| int av_rc4_init | ( | struct AVRC4 * | d, | 
| const uint8_t * | key, | ||
| int | key_bits, | ||
| int | decrypt | ||
| ) | 
| void av_rc4_crypt | ( | struct AVRC4 * | d, | 
| uint8_t * | dst, | ||
| const uint8_t * | src, | ||
| int | count, | ||
| uint8_t * | iv, | ||
| int | decrypt | ||
| ) | 
Encrypts / decrypts using the RC4 algorithm.
| d | pointer to the AVRC4 context | 
| count | number of bytes | 
| dst | destination array, can be equal to src | 
| src | source array, can be equal to dst, may be NULL | 
| iv | not (yet) used for RC4, should be NULL | 
| decrypt | 0 for encryption, 1 for decryption, not (yet) used |