Home
last modified time | relevance | path

Searched refs:AVSHA512 (Results 1 – 5 of 5) sorted by relevance

/third_party/ffmpeg/libavutil/
Dsha512.h56 struct AVSHA512;
61 struct AVSHA512 *av_sha512_alloc(void);
70 int av_sha512_init(struct AVSHA512* context, int bits);
80 void av_sha512_update(struct AVSHA512* context, const uint8_t* data, unsigned int len);
82 void av_sha512_update(struct AVSHA512* context, const uint8_t* data, size_t len);
91 void av_sha512_final(struct AVSHA512* context, uint8_t *digest);
Dsha512.c34 typedef struct AVSHA512 { struct
39 } AVSHA512; argument
41 const int av_sha512_size = sizeof(AVSHA512);
43 struct AVSHA512 *av_sha512_alloc(void) in av_sha512_alloc()
45 return av_mallocz(sizeof(struct AVSHA512)); in av_sha512_alloc()
191 av_cold int av_sha512_init(AVSHA512 *ctx, int bits) in av_sha512_init()
243 void av_sha512_update(AVSHA512* ctx, const uint8_t* data, unsigned int len) in av_sha512_update()
245 void av_sha512_update(AVSHA512* ctx, const uint8_t* data, size_t len) in av_sha512_update()
273 void av_sha512_final(AVSHA512* ctx, uint8_t *digest) in av_sha512_final()
/third_party/ffmpeg/libavutil/tests/
Dsha512.c32 struct AVSHA512 *ctx; in main()
/third_party/ffmpeg/tools/
Dcrypto_bench.c109 DEFINE_LAVU_MD(sha512, AVSHA512, sha512, 512);
/third_party/ffmpeg/doc/
DAPIchanges1703 Add AVSHA512: