22 #ifndef AVFORMAT_SRTP_H 23 #define AVFORMAT_SRTP_H 33 int rtp_hmac_size, rtcp_hmac_size;
34 uint8_t master_key[16];
35 uint8_t master_salt[14];
36 uint8_t rtp_key[16], rtcp_key[16];
37 uint8_t rtp_salt[14], rtcp_salt[14];
38 uint8_t rtp_auth[20], rtcp_auth[20];
39 int seq_largest, seq_initialized;
45 int ff_srtp_set_crypto(
struct SRTPContext *s,
const char *suite,
48 int ff_srtp_decrypt(
struct SRTPContext *s, uint8_t *buf,
int *lenptr);
49 int ff_srtp_encrypt(
struct SRTPContext *s,
const uint8_t *in,
int len,
50 uint8_t *out,
int outlen);
Definition: aes_internal.h:34