Searched refs:AVSHA512 (Results 1 – 5 of 5) sorted by relevance
/third_party/ffmpeg/libavutil/ |
D | sha512.h | 56 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);
|
D | sha512.c | 34 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/ |
D | sha512.c | 32 struct AVSHA512 *ctx; in main()
|
/third_party/ffmpeg/tools/ |
D | crypto_bench.c | 109 DEFINE_LAVU_MD(sha512, AVSHA512, sha512, 512);
|
/third_party/ffmpeg/doc/ |
D | APIchanges | 1703 Add AVSHA512:
|