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 | sha.h | 78 void av_sha_update(struct AVSHA *ctx, const uint8_t *data, unsigned int len); 80 void av_sha_update(struct AVSHA *ctx, const uint8_t *data, size_t len);
|
D | hmac.c | 90 c->update = (hmac_update) av_sha_update; in av_hmac_alloc() 98 c->update = (hmac_update) av_sha_update; in av_hmac_alloc() 106 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, unsigned int len) in av_sha_update() function 317 void av_sha_update(struct AVSHA *ctx, const uint8_t *data, size_t len) in av_sha_update() 350 av_sha_update(ctx, "\200", 1); in av_sha_final() 352 av_sha_update(ctx, "", 1); in av_sha_final() 353 av_sha_update(ctx, (uint8_t *)&finalcount, 8); /* Should cause a transform() */ in av_sha_final()
|
D | random_seed.c | 115 av_sha_update(sha, (const uint8_t *)buffer, sizeof(buffer)); in get_generic_seed()
|
D | hash.c | 175 case SHA256: av_sha_update(ctx->ctx, src, len); break; in av_hash_update()
|
/third_party/ffmpeg/libavformat/ |
D | mov.c | 1046 av_sha_update(sha, fixed_key, 16); in mov_read_adrm() 1047 av_sha_update(sha, activation_bytes, 4); in mov_read_adrm() 1050 av_sha_update(sha, fixed_key, 16); in mov_read_adrm() 1051 av_sha_update(sha, intermediate_key, 20); in mov_read_adrm() 1052 av_sha_update(sha, activation_bytes, 4); in mov_read_adrm() 1055 av_sha_update(sha, intermediate_key, 16); in mov_read_adrm() 1056 av_sha_update(sha, intermediate_iv, 16); in mov_read_adrm() 1076 av_sha_update(sha, input, 16); in mov_read_adrm() 1077 av_sha_update(sha, c->file_key, 16); in mov_read_adrm() 1078 av_sha_update(sha, fixed_key, 16); in mov_read_adrm()
|
/third_party/ffmpeg/doc/ |
D | APIchanges | 570 Change av_sha_update(), av_sha512_update() and av_md5_sum()/av_md5_update() length
|