| 
    FFmpeg
    
   | 
 
Files | |
| file | xtea.c | 
| XTEA 32-bit implementation.  | |
Data Structures | |
| struct | AVXTEA | 
Functions | |
| AVXTEA * | av_xtea_alloc (void) | 
| Allocate an AVXTEA context.  More... | |
| void | av_xtea_init (struct AVXTEA *ctx, const uint8_t key[16]) | 
| Initialize an AVXTEA context.  More... | |
| void | av_xtea_le_init (struct AVXTEA *ctx, const uint8_t key[16]) | 
| Initialize an AVXTEA context.  More... | |
| void | av_xtea_crypt (struct AVXTEA *ctx, uint8_t *dst, const uint8_t *src, int count, uint8_t *iv, int decrypt) | 
| Encrypt or decrypt a buffer using a previously initialized context, in big endian format.  More... | |
| void | av_xtea_le_crypt (struct AVXTEA *ctx, uint8_t *dst, const uint8_t *src, int count, uint8_t *iv, int decrypt) | 
| Encrypt or decrypt a buffer using a previously initialized context, in little endian format.  More... | |
Allocate an AVXTEA context.
Definition at line 37 of file xtea.c.
Referenced by main(), and run_lavu_xtea().
| void av_xtea_crypt | ( | struct AVXTEA * | ctx, | 
| uint8_t * | dst, | ||
| const uint8_t * | src, | ||
| int | count, | ||
| uint8_t * | iv, | ||
| int | decrypt | ||
| ) | 
Encrypt or decrypt a buffer using a previously initialized context, in big endian format.
| ctx | an AVXTEA context | 
| dst | destination array, can be equal to src | 
| src | source array, can be equal to dst | 
| count | number of 8 byte blocks | 
| iv | initialization vector for CBC mode, if NULL then ECB will be used | 
| decrypt | 0 for encryption, 1 for decryption | 
Definition at line 243 of file xtea.c.
Referenced by main(), and run_lavu_xtea().
| void av_xtea_le_crypt | ( | struct AVXTEA * | ctx, | 
| uint8_t * | dst, | ||
| const uint8_t * | src, | ||
| int | count, | ||
| uint8_t * | iv, | ||
| int | decrypt | ||
| ) | 
Encrypt or decrypt a buffer using a previously initialized context, in little endian format.
| ctx | an AVXTEA context | 
| dst | destination array, can be equal to src | 
| src | source array, can be equal to dst | 
| count | number of 8 byte blocks | 
| iv | initialization vector for CBC mode, if NULL then ECB will be used | 
| decrypt | 0 for encryption, 1 for decryption | 
Definition at line 249 of file xtea.c.
Referenced by main(), and rtmpe8_sig().
 1.8.6