FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Functions
des.h File Reference
#include <stdint.h>

Go to the source code of this file.

Data Structures

struct  AVDES
 

Functions

AVDESav_des_alloc (void)
 Allocate an AVDES context. More...
 
int av_des_init (struct AVDES *d, const uint8_t *key, int key_bits, int decrypt)
 Initializes an AVDES context. More...
 
void av_des_crypt (struct AVDES *d, uint8_t *dst, const uint8_t *src, int count, uint8_t *iv, int decrypt)
 Encrypts / decrypts using the DES algorithm. More...
 
void av_des_mac (struct AVDES *d, uint8_t *dst, const uint8_t *src, int count)
 Calculates CBC-MAC using the DES algorithm. More...