00001 //--------------------------------------------------------------------------------------------- 00002 // This file is a part of "DinoKod". 00003 // Copyright © 2003 Dino Productions. All Rights Reserved. 00004 // 00005 // File : md5.h 00006 // Author : Sebastien LEIX sebastien.leix@wanadoo.fr 00007 // Date : 18/05/2003 00008 // Modification : 00009 // 00010 // RFC 1321 compliant MD5 implementation, 00011 // by Christophe Devine <devine@cr0.net>; 00012 // this program is licensed under the GPL. 00013 //--------------------------------------------------------------------------------------------- 00014 #ifndef __MD5_H__ 00015 #define __MD5_H__ 00016 00017 #include "Common/Types.h" 00018 #include "Common/Str.h" 00019 00020 extern COMMON_API KStr md5( KStr& sString ); 00021 00022 #endif __MD5_H__ 00023
1.5.1-p1