Home
last modified time | relevance | path

Searched refs:AVHMAC (Results 1 – 6 of 6) sorted by relevance

/third_party/ffmpeg/libavutil/
Dhmac.h42 typedef struct AVHMAC AVHMAC; typedef
48 AVHMAC *av_hmac_alloc(enum AVHMACType type);
54 void av_hmac_free(AVHMAC *ctx);
62 void av_hmac_init(AVHMAC *ctx, const uint8_t *key, unsigned int keylen);
70 void av_hmac_update(AVHMAC *ctx, const uint8_t *data, unsigned int len);
79 int av_hmac_final(AVHMAC *ctx, uint8_t *out, unsigned int outlen);
92 int av_hmac_calc(AVHMAC *ctx, const uint8_t *data, unsigned int len,
Dhmac.c44 struct AVHMAC { struct
72 AVHMAC *av_hmac_alloc(enum AVHMACType type) in av_hmac_alloc() argument
74 AVHMAC *c = av_mallocz(sizeof(*c)); in av_hmac_alloc()
137 void av_hmac_free(AVHMAC *c) in av_hmac_free()
145 void av_hmac_init(AVHMAC *c, const uint8_t *key, unsigned int keylen) in av_hmac_init()
166 void av_hmac_update(AVHMAC *c, const uint8_t *data, unsigned int len) in av_hmac_update()
171 int av_hmac_final(AVHMAC *c, uint8_t *out, unsigned int outlen) in av_hmac_final()
189 int av_hmac_calc(AVHMAC *c, const uint8_t *data, unsigned int len, in av_hmac_calc()
/third_party/ffmpeg/libavformat/
Dsrtp.h28 struct AVHMAC;
32 struct AVHMAC *hmac;
Drtmpdigest.c37 AVHMAC *hmac; in ff_rtmp_calc_digest()
/third_party/ffmpeg/libavutil/tests/
Dhmac.c24 static void test(AVHMAC *hmac, const uint8_t *key, int keylen, in test()
44 AVHMAC *hmac; in main()
/third_party/ffmpeg/doc/
DAPIchanges1976 Add AVHMAC.