source:
vbox/trunk/src/libs/ffmpeg-20060710/libavutil/md5.h@
11537
Last change on this file since 11537 was 5776, checked in by , 17 years ago | |
---|---|
File size: 325 bytes |
Line | |
---|---|
1 | #ifndef MD5_H |
2 | #define MD5_H |
3 | |
4 | extern const int av_md5_size; |
5 | |
6 | struct AVMD5; |
7 | |
8 | void av_md5_init(struct AVMD5 *ctx); |
9 | void av_md5_update(struct AVMD5 *ctx, const uint8_t *src, const int len); |
10 | void av_md5_final(struct AVMD5 *ctx, uint8_t *dst); |
11 | void av_md5_sum(uint8_t *dst, const uint8_t *src, const int len); |
12 | |
13 | #endif /* MD5_H */ |
14 |
Note:
See TracBrowser
for help on using the repository browser.