Searched refs:av_sha_update (Results 1 – 8 of 8) sorted by relevance
/third_party/ffmpeg/libavutil/tests/ |
D | sha.c | 40 av_sha_update(ctx, "abc", 3); in main() 42 av_sha_update(ctx, "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 56); in main() 45 av_sha_update(ctx, "a", 1); in main()
|
/third_party/ffmpeg/libavutil/ |
D | hmac.c | 85 c->update = (hmac_update) av_sha_update; in av_hmac_alloc() 93 c->update = (hmac_update) av_sha_update; in av_hmac_alloc() 101 c->update = (hmac_update) av_sha_update; in av_hmac_alloc()
|
D | sha.c | 315 void av_sha_update(struct AVSHA *ctx, const uint8_t *data, size_t len) in av_sha_update() function 352 av_sha_update(ctx, "\200", 1); in av_sha_final() 354 av_sha_update(ctx, "", 1); in av_sha_final() 355 av_sha_update(ctx, (uint8_t *)&finalcount, 8); /* Should cause a transform() */ in av_sha_final()
|
D | sha.h | 76 void av_sha_update(struct AVSHA *ctx, const uint8_t *data, size_t len);
|
D | random_seed.c | 115 av_sha_update(sha, (const uint8_t *)buffer, sizeof(buffer)); in get_generic_seed()
|
D | hash.c | 171 case SHA256: av_sha_update(ctx->ctx, src, len); break; in av_hash_update()
|
/third_party/ffmpeg/libavformat/ |
D | mov.c | 1087 av_sha_update(sha, fixed_key, 16); in mov_read_adrm() 1088 av_sha_update(sha, activation_bytes, 4); in mov_read_adrm() 1091 av_sha_update(sha, fixed_key, 16); in mov_read_adrm() 1092 av_sha_update(sha, intermediate_key, 20); in mov_read_adrm() 1093 av_sha_update(sha, activation_bytes, 4); in mov_read_adrm() 1096 av_sha_update(sha, intermediate_key, 16); in mov_read_adrm() 1097 av_sha_update(sha, intermediate_iv, 16); in mov_read_adrm() 1117 av_sha_update(sha, input, 16); in mov_read_adrm() 1118 av_sha_update(sha, c->file_key, 16); in mov_read_adrm() 1119 av_sha_update(sha, fixed_key, 16); in mov_read_adrm()
|
/third_party/ffmpeg/doc/ |
D | APIchanges | 849 Change av_sha_update(), av_sha512_update() and av_md5_sum()/av_md5_update() length
|