Main Page | Modules | Data Structures | File List | Data Fields | Globals | Related Pages

md5.h

Go to the documentation of this file.
00001 /* 00002 * Copyright (c) 2000, 2002 Virtual Unlimited B.V. 00003 * 00004 * This library is free software; you can redistribute it and/or 00005 * modify it under the terms of the GNU Lesser General Public 00006 * License as published by the Free Software Foundation; either 00007 * version 2.1 of the License, or (at your option) any later version. 00008 * 00009 * This library is distributed in the hope that it will be useful, 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00012 * Lesser General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU Lesser General Public 00015 * License along with this library; if not, write to the Free Software 00016 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00017 * 00018 */ 00019 00026 #ifndef _MD5_H 00027 #define _MD5_H 00028 00029 #include "beecrypt.h" 00030 00034 typedef struct 00035 { 00038 uint32_t h[4]; 00041 uint32_t data[16]; 00046 #if (MP_WBITS == 64) 00047 mpw length[1]; 00048 #elif (MP_WBITS == 32) 00049 mpw length[2]; 00050 #else 00051 # error 00052 #endif 00053 00057 uint32_t offset; 00058 } md5Param; 00059 00060 #ifdef __cplusplus 00061 extern "C" { 00062 #endif 00063 00067 extern BEECRYPTAPI const hashFunction md5; 00068 00075 BEECRYPTAPI 00076 void md5Process(md5Param* mp); 00077 00084 BEECRYPTAPI 00085 int md5Reset (md5Param* mp); 00086 00095 BEECRYPTAPI 00096 int md5Update (md5Param* mp, const byte* data, size_t size); 00097 00105 BEECRYPTAPI 00106 int md5Digest (md5Param* mp, byte* digest); 00107 00108 #ifdef __cplusplus 00109 } 00110 #endif 00111 00112 #endif

Generated on Mon Aug 9 02:23:21 2004 for BeeCrypt by doxygen 1.3.8