Searched refs:av_md5_update (Results 1 – 11 of 11) sorted by relevance
/third_party/ffmpeg/libavutil/ |
D | md5.c | 154 void av_md5_update(AVMD5 *ctx, const uint8_t *src, int len) in av_md5_update() function 156 void av_md5_update(AVMD5 *ctx, const uint8_t *src, size_t len) in av_md5_update() 197 av_md5_update(ctx, "\200", 1); in av_md5_final() 199 av_md5_update(ctx, "", 1); in av_md5_final() 201 av_md5_update(ctx, (uint8_t *) &finalcount, 8); in av_md5_final() 216 av_md5_update(&ctx, src, len); in av_md5_sum()
|
D | md5.h | 68 void av_md5_update(struct AVMD5 *ctx, const uint8_t *src, int len); 70 void av_md5_update(struct AVMD5 *ctx, const uint8_t *src, size_t len);
|
D | hmac.c | 82 c->update = (hmac_update) av_md5_update; in av_hmac_alloc()
|
D | hash.c | 167 case MD5: av_md5_update(ctx->ctx, src, len); break; in av_hash_update()
|
/third_party/ffmpeg/libavformat/ |
D | rtmpproto.c | 1615 av_md5_update(md5, user, strlen(user)); in do_adobe_auth() 1616 av_md5_update(md5, salt, strlen(salt)); in do_adobe_auth() 1617 av_md5_update(md5, rt->password, strlen(rt->password)); in do_adobe_auth() 1622 av_md5_update(md5, hashstr, strlen(hashstr)); in do_adobe_auth() 1624 av_md5_update(md5, opaque, strlen(opaque)); in do_adobe_auth() 1626 av_md5_update(md5, challenge, strlen(challenge)); in do_adobe_auth() 1627 av_md5_update(md5, challenge2, strlen(challenge2)); in do_adobe_auth() 1658 av_md5_update(md5, user, strlen(user)); in do_llnw_auth() 1659 av_md5_update(md5, ":", 1); in do_llnw_auth() 1660 av_md5_update(md5, realm, strlen(realm)); in do_llnw_auth() [all …]
|
D | md5proto.c | 52 av_md5_update(c->md5, buf, size); in md5_write()
|
D | httpauth.c | 131 av_md5_update(md5ctx, str, strlen(str)); in update_md5_strings()
|
/third_party/ffmpeg/libavformat/tests/ |
D | movenc.c | 102 av_md5_update(md5, buf, size); in io_write()
|
/third_party/ffmpeg/libavcodec/ |
D | flacenc.c | 1353 av_md5_update(s->md5ctx, buf, buf_size); in update_md5_sum()
|
D | hevcdec.c | 3252 av_md5_update(s->md5_ctx, src, w << pixel_shift); in verify_md5()
|
/third_party/ffmpeg/doc/ |
D | APIchanges | 570 Change av_sha_update(), av_sha512_update() and av_md5_sum()/av_md5_update() length
|