Files
interactive/rcts/rc_mngd/lib/md5.h
2026-08-07 17:38:18 +09:00

69 lines
2.4 KiB
C++

#ifndef __MD5_H__
#define __MD5_H__
#include <stdio.h>
#include <fstream>
#include <iostream>
using namespace std;
class MD5 {
public:
MD5 (); // simple initializer
void update (unsigned char *input, unsigned int input_length);
void update (istream& stream);
void update (FILE *file);
void update (ifstream& stream);
void finalize ();
MD5 (unsigned char *string); // digest string, finalize
MD5 (istream& stream); // digest stream, finalize
MD5 (FILE *file); // digest file, close, finalize
MD5 (ifstream& stream); // digest stream, close, finalize
unsigned char *raw_digest (); // digest as a 16-byte binary array
char * hex_digest (); // digest as a 33-byte ascii-hex string
friend ostream& operator<< (ostream&, MD5 context);
private:
typedef unsigned int uint4; // assumes integer is 4 words long
typedef unsigned short int uint2; // assumes short integer is 2 words long
typedef unsigned char uint1; // assumes char is 1 word long
uint4 state[4];
uint4 count[2]; // number of *bits*, mod 2^64
uint1 buffer[64]; // input buffer
uint1 digest[16];
uint1 finalized;
void init (); // called by all constructors
void transform (uint1 *buffer); // does the real update work. Note
// that length is implied to be 64.
static void encode (uint1 *dest, uint4 *src, uint4 length);
static void decode (uint4 *dest, uint1 *src, uint4 length);
static void memcpy (uint1 *dest, uint1 *src, uint4 length);
static void memset (uint1 *start, uint1 val, uint4 length);
static inline uint4 rotate_left (uint4 x, uint4 n);
static inline uint4 F (uint4 x, uint4 y, uint4 z);
static inline uint4 G (uint4 x, uint4 y, uint4 z);
static inline uint4 H (uint4 x, uint4 y, uint4 z);
static inline uint4 I (uint4 x, uint4 y, uint4 z);
static inline void FF (uint4& a, uint4 b, uint4 c, uint4 d, uint4 x,
uint4 s, uint4 ac);
static inline void GG (uint4& a, uint4 b, uint4 c, uint4 d, uint4 x,
uint4 s, uint4 ac);
static inline void HH (uint4& a, uint4 b, uint4 c, uint4 d, uint4 x,
uint4 s, uint4 ac);
static inline void II (uint4& a, uint4 b, uint4 c, uint4 d, uint4 x,
uint4 s, uint4 ac);
};
#endif