2003-06-15 13:41:32 +00:00
|
|
|
extern "C" {
|
|
|
|
#include "md5.h"
|
|
|
|
}
|
|
|
|
|
|
|
|
#include "hash.hh"
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
|
|
|
|
Hash::Hash()
|
|
|
|
{
|
|
|
|
memset(hash, 0, sizeof(hash));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool Hash::operator == (Hash & h2)
|
|
|
|
{
|
|
|
|
for (unsigned int i = 0; i < hashSize; i++)
|
|
|
|
if (hash[i] != h2.hash[i]) return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool Hash::operator != (Hash & h2)
|
|
|
|
{
|
|
|
|
return !(*this == h2);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Hash::operator string() const
|
|
|
|
{
|
|
|
|
ostringstream str;
|
|
|
|
for (unsigned int i = 0; i < hashSize; i++) {
|
|
|
|
str.fill('0');
|
|
|
|
str.width(2);
|
|
|
|
str << hex << (int) hash[i];
|
|
|
|
}
|
|
|
|
return str.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Hash parseHash(const string & s)
|
|
|
|
{
|
|
|
|
Hash hash;
|
2003-06-16 13:33:38 +00:00
|
|
|
if (s.length() != Hash::hashSize * 2)
|
|
|
|
throw BadRefError("invalid hash: " + s);
|
2003-06-15 13:41:32 +00:00
|
|
|
for (unsigned int i = 0; i < Hash::hashSize; i++) {
|
|
|
|
string s2(s, i * 2, 2);
|
|
|
|
if (!isxdigit(s2[0]) || !isxdigit(s2[1]))
|
|
|
|
throw BadRefError("invalid hash: " + s);
|
|
|
|
istringstream str(s2);
|
|
|
|
int n;
|
|
|
|
str >> hex >> n;
|
|
|
|
hash.hash[i] = n;
|
|
|
|
}
|
|
|
|
return hash;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool isHash(const string & s)
|
|
|
|
{
|
|
|
|
if (s.length() != 32) return false;
|
|
|
|
for (int i = 0; i < 32; i++) {
|
|
|
|
char c = s[i];
|
|
|
|
if (!((c >= '0' && c <= '9') ||
|
|
|
|
(c >= 'a' && c <= 'f')))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-16 13:33:38 +00:00
|
|
|
Hash hashString(const string & s)
|
|
|
|
{
|
|
|
|
Hash hash;
|
|
|
|
md5_buffer(s.c_str(), s.length(), hash.hash);
|
|
|
|
return hash;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-15 13:41:32 +00:00
|
|
|
Hash hashFile(const string & fileName)
|
|
|
|
{
|
|
|
|
Hash hash;
|
|
|
|
FILE * file = fopen(fileName.c_str(), "rb");
|
|
|
|
if (!file)
|
2003-06-16 13:33:38 +00:00
|
|
|
throw SysError("file `" + fileName + "' does not exist");
|
2003-06-15 13:41:32 +00:00
|
|
|
int err = md5_stream(file, hash.hash);
|
|
|
|
fclose(file);
|
2003-06-16 13:33:38 +00:00
|
|
|
if (err) throw SysError("cannot hash file " + fileName);
|
2003-06-15 13:41:32 +00:00
|
|
|
return hash;
|
|
|
|
}
|