00001 /* $Id: md5ossl.h 25189 2009-10-02 12:04:37Z akr $ */ 00002 00003 #ifndef MD5OSSL_H_INCLUDED 00004 #define MD5OSSL_H_INCLUDED 00005 00006 #include <stddef.h> 00007 #include <openssl/md5.h> 00008 00009 #define MD5_BLOCK_LENGTH MD5_CBLOCK 00010 00011 void MD5_Finish(MD5_CTX *pctx, unsigned char *digest); 00012 00013 #endif 00014