// @(#)root/base:$Name: $:$Id: TMD5.h,v 1.8 2005/04/07 14:43:35 rdm Exp $
// Author: Fons Rademakers 29/9/2001
/*************************************************************************
* Copyright (C) 1995-2001, Rene Brun and Fons Rademakers. *
* All rights reserved. *
* *
* For the licensing terms see $ROOTSYS/LICENSE. *
* For the list of contributors see $ROOTSYS/README/CREDITS. *
*************************************************************************/
#ifndef ROOT_TMD5
#define ROOT_TMD5
//////////////////////////////////////////////////////////////////////////
// //
// TMD5 //
// //
// This code implements the MD5 message-digest algorithm. //
// The algorithm is due to Ron Rivest. This code was //
// written by Colin Plumb in 1993, no copyright is claimed. //
// This code is in the public domain; do with it what you wish. //
// //
// Equivalent code is available from RSA Data Security, Inc. //
// This code has been tested against that, and is equivalent, //
// except that you don't need to include two pages of legalese //
// with every copy. //
// //
// To compute the message digest of a chunk of bytes, create an //
// TMD5 object, call Update() as needed on buffers full of bytes, and //
// then call Final(), which will, optionally, fill a supplied 16-byte //
// array with the digest. //
// //
//////////////////////////////////////////////////////////////////////////
#ifndef ROOT_Rtypes
#include "Rtypes.h"
#endif
// forward declaration
class TBuffer;
class TMD5;
Bool_t operator==(const TMD5 &m1, const TMD5 &m2);
class TMD5 {
friend Bool_t operator==(const TMD5 &m1, const TMD5 &m2);
private:
UInt_t fBuf[4]; //!temp buffer
UInt_t fBits[2]; //!temp buffer
UChar_t fIn[64]; //!temp buffer
UChar_t fDigest[16]; //message digest
Bool_t fFinalized; //true if message digest has been finalized
void Transform(UInt_t buf[4], const UChar_t in[64]);
void Encode(UChar_t *out, const UInt_t *in, UInt_t len);
void Decode(UInt_t *out, const UChar_t *in, UInt_t len);
public:
TMD5();
TMD5(const UChar_t *digest);
TMD5(const TMD5 &md5);
virtual ~TMD5() { }
TMD5 &operator=(const TMD5 &rhs);
void Update(const UChar_t *buf, UInt_t len);
void Final();
void Final(UChar_t digest[16]);
void Print() const;
const char *AsString() const;
static TMD5 *ReadChecksum(const char *file);
static Int_t WriteChecksum(const char *file, const TMD5 *md5);
static TMD5 *FileChecksum(const char *file);
static Int_t FileChecksum(const char *file, UChar_t digest[16]);
ClassDef(TMD5,1) // MD5 cryptographic hash functions with a 128 bit output
};
inline TBuffer &operator>>(TBuffer &buf, TMD5 &md5)
{ md5.Streamer(buf); return buf; }
inline TBuffer &operator<<(TBuffer &buf, const TMD5 &md5)
{ ((TMD5&)md5).Streamer(buf); return buf; }
inline Bool_t operator!=(const TMD5 &m1, const TMD5 &m2)
{ return !(m1 == m2); }
#endif
syntax highlighted by Code2HTML, v. 0.9.1