Main Page | Namespace List | Class Hierarchy | Class List | Directories | File List | Namespace Members | Class Members | File Members

MD4.h

Go to the documentation of this file.
00001 //
00002 // MD4.h
00003 //
00004 // Copyright (c) Shareaza Development Team, 2002-2005.
00005 // This file is part of SHAREAZA (www.shareaza.com)
00006 //
00007 // Shareaza is free software; you can redistribute it
00008 // and/or modify it under the terms of the GNU General Public License
00009 // as published by the Free Software Foundation; either version 2 of
00010 // the License, or (at your option) any later version.
00011 //
00012 // Shareaza is distributed in the hope that it will be useful,
00013 // but WITHOUT ANY WARRANTY; without even the implied warranty of
00014 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00015 // GNU General Public License for more details.
00016 //
00017 // You should have received a copy of the GNU General Public License
00018 // along with Shareaza; if not, write to the Free Software
00019 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00020 //
00021 
00022 
00023 #if !defined(AFX_MD4_H__B0429238_3786_452C_B43D_3311AE91B5DA__INCLUDED_)
00024 #define AFX_MD4_H__B0429238_3786_452C_B43D_3311AE91B5DA__INCLUDED_
00025 
00026 #pragma once
00027 
00028 
00029 class CMD4
00030 {
00031 // Construction
00032 public:
00033         CMD4();
00034         virtual ~CMD4();
00035 
00036 // Attributes
00037 protected:
00038         DWORD   m_nState[4];
00039         DWORD   m_nCount[2];
00040         BYTE    m_pBuffer[64];
00041 
00042 // Operations
00043 public:
00044         void    Reset();
00045         void    Add(LPCVOID pData, DWORD nLength);
00046         void    Finish();
00047         void    GetHash(MD4* pHash);
00048 
00049 };
00050 
00051 inline bool operator==(const MD4& md4a, const MD4& md4b)
00052 {
00053     return memcmp( &md4a, &md4b, 16 ) == 0;
00054 }
00055 
00056 inline bool operator!=(const MD4& md4a, const MD4& md4b)
00057 {
00058     return memcmp( &md4a, &md4b, 16 ) != 0;
00059 }
00060 
00061 #endif // !defined(AFX_MD4_H__B0429238_3786_452C_B43D_3311AE91B5DA__INCLUDED_)

Generated on Thu Dec 15 10:39:44 2005 for Shareaza 2.2.1.0 by  doxygen 1.4.2