00001 /* 00002 Free Download Manager Copyright (c) 2003-2007 FreeDownloadManager.ORG 00003 */ 00004 00005 00006 00007 #ifndef MD5_H 00008 #define MD5_H 00009 00010 extern const int av_md5_size; 00011 00012 struct AVMD5; 00013 00014 void av_md5_init(struct AVMD5 *ctx); 00015 void av_md5_update(struct AVMD5 *ctx, const uint8_t *src, const int len); 00016 void av_md5_final(struct AVMD5 *ctx, uint8_t *dst); 00017 void av_md5_sum(uint8_t *dst, const uint8_t *src, const int len); 00018 00019 #endif 00020
1.5.6