Searched refs:av_sha512_update (Results 1 – 6 of 6) sorted by relevance
/third_party/ffmpeg/libavutil/tests/ |
D | sha512.c | 46 av_sha512_update(ctx, "abc", 3); in main() 48 av_sha512_update(ctx, "abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmn" in main() 52 av_sha512_update(ctx, "a", 1); in main()
|
/third_party/ffmpeg/libavutil/ |
D | sha512.h | 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);
|
D | sha512.c | 243 void av_sha512_update(AVSHA512* ctx, const uint8_t* data, unsigned int len) in av_sha512_update() function 245 void av_sha512_update(AVSHA512* ctx, const uint8_t* data, size_t len) in av_sha512_update() 278 av_sha512_update(ctx, "\200", 1); in av_sha512_final() 280 av_sha512_update(ctx, "", 1); in av_sha512_final() 281 av_sha512_update(ctx, (uint8_t *)&i, 8); in av_sha512_final() 282 av_sha512_update(ctx, (uint8_t *)&finalcount, 8); /* Should cause a transform() */ in av_sha512_final()
|
D | hmac.c | 114 c->update = (hmac_update) av_sha512_update; in av_hmac_alloc() 122 c->update = (hmac_update) av_sha512_update; in av_hmac_alloc()
|
D | hash.c | 179 case SHA512: av_sha512_update(ctx->ctx, src, len); break; in av_hash_update()
|
/third_party/ffmpeg/doc/ |
D | APIchanges | 570 Change av_sha_update(), av_sha512_update() and av_md5_sum()/av_md5_update() length 1706 av_sha512_update()
|