You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
325B

  1. #ifndef MD5_H
  2. #define MD5_H
  3. extern const int av_md5_size;
  4. struct AVMD5;
  5. void av_md5_init(struct AVMD5 *ctx);
  6. void av_md5_update(struct AVMD5 *ctx, const uint8_t *src, const int len);
  7. void av_md5_final(struct AVMD5 *ctx, uint8_t *dst);
  8. void av_md5_sum(uint8_t *dst, const uint8_t *src, const int len);
  9. #endif /* MD5_H */