2005-01-20 23:22:22 +00:00
|
|
|
// Berkeley Open Infrastructure for Network Computing
|
|
|
|
// http://boinc.berkeley.edu
|
|
|
|
// Copyright (C) 2005 University of California
|
2004-07-13 13:54:09 +00:00
|
|
|
//
|
2005-01-20 23:22:22 +00:00
|
|
|
// This is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation;
|
|
|
|
// either version 2.1 of the License, or (at your option) any later version.
|
2004-07-13 13:54:09 +00:00
|
|
|
//
|
2005-01-20 23:22:22 +00:00
|
|
|
// This software is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
// See the GNU Lesser General Public License for more details.
|
2002-09-26 18:11:06 +00:00
|
|
|
//
|
2005-01-20 23:22:22 +00:00
|
|
|
// To view the GNU Lesser General Public License visit
|
|
|
|
// http://www.gnu.org/copyleft/lesser.html
|
|
|
|
// or write to the Free Software Foundation, Inc.,
|
|
|
|
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2002-09-26 18:11:06 +00:00
|
|
|
|
2005-07-14 16:46:38 +00:00
|
|
|
#if defined(_WIN32) && !defined(__STDWX_H__) && !defined(_BOINC_WIN_) && !defined(_AFX_STDAFX_H_)
|
2004-06-16 23:16:08 +00:00
|
|
|
#include "boinc_win.h"
|
2004-03-04 11:41:43 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _WIN32
|
2004-07-13 13:54:09 +00:00
|
|
|
#include <cstdio>
|
2004-03-04 11:41:43 +00:00
|
|
|
#endif
|
2002-04-30 22:22:54 +00:00
|
|
|
|
|
|
|
#include "md5.h"
|
|
|
|
#include "md5_file.h"
|
2002-07-11 01:09:53 +00:00
|
|
|
#include "error_numbers.h"
|
2002-04-30 22:22:54 +00:00
|
|
|
|
2004-07-03 21:38:15 +00:00
|
|
|
#ifdef _USING_FCGI_
|
|
|
|
#include "fcgi_stdio.h"
|
|
|
|
#endif
|
|
|
|
|
2004-07-13 14:18:47 +00:00
|
|
|
int md5_file(const char* path, char* output, double& nbytes) {
|
2002-04-30 22:22:54 +00:00
|
|
|
unsigned char buf[4096];
|
|
|
|
unsigned char binout[16];
|
|
|
|
FILE* f;
|
|
|
|
md5_state_t state;
|
|
|
|
int i, n;
|
2002-08-30 20:56:02 +00:00
|
|
|
|
2002-04-30 22:22:54 +00:00
|
|
|
nbytes = 0;
|
2002-06-19 18:37:08 +00:00
|
|
|
f = fopen(path, "rb");
|
2002-05-24 04:29:10 +00:00
|
|
|
if (!f) {
|
2002-10-03 18:33:46 +00:00
|
|
|
fprintf(stderr, "md5_file: can't open %s\n", path);
|
2002-05-24 04:29:10 +00:00
|
|
|
perror("md5_file");
|
2003-10-21 04:06:55 +00:00
|
|
|
return ERR_FOPEN;
|
2002-05-24 04:29:10 +00:00
|
|
|
}
|
2002-04-30 22:22:54 +00:00
|
|
|
md5_init(&state);
|
|
|
|
while (1) {
|
|
|
|
n = fread(buf, 1, 4096, f);
|
|
|
|
if (n<=0) break;
|
|
|
|
nbytes += n;
|
|
|
|
md5_append(&state, buf, n);
|
|
|
|
}
|
|
|
|
md5_finish(&state, binout);
|
|
|
|
for (i=0; i<16; i++) {
|
|
|
|
sprintf(output+2*i, "%02x", binout[i]);
|
|
|
|
}
|
|
|
|
output[32] = 0;
|
|
|
|
fclose(f);
|
|
|
|
return 0;
|
|
|
|
}
|
2002-07-05 05:33:40 +00:00
|
|
|
|
2004-07-13 14:18:47 +00:00
|
|
|
int md5_block(const unsigned char* data, int nbytes, char* output) {
|
2002-07-05 05:33:40 +00:00
|
|
|
unsigned char binout[16];
|
|
|
|
int i;
|
2002-08-30 20:56:02 +00:00
|
|
|
|
2002-07-05 05:33:40 +00:00
|
|
|
md5_state_t state;
|
|
|
|
md5_init(&state);
|
|
|
|
md5_append(&state, data, nbytes);
|
|
|
|
md5_finish(&state, binout);
|
|
|
|
for (i=0; i<16; i++) {
|
|
|
|
sprintf(output+2*i, "%02x", binout[i]);
|
|
|
|
}
|
|
|
|
output[32] = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
2004-07-13 14:18:47 +00:00
|
|
|
|
2005-01-08 06:54:03 +00:00
|
|
|
std::string md5_string(const unsigned char* data, int nbytes) {
|
|
|
|
char output[MD5_LEN];
|
2004-07-13 14:18:47 +00:00
|
|
|
md5_block(data, nbytes, output);
|
2004-07-20 10:38:14 +00:00
|
|
|
return std::string(output);
|
2004-07-13 14:18:47 +00:00
|
|
|
}
|
|
|
|
|
2004-12-08 00:40:19 +00:00
|
|
|
|
2005-01-02 18:29:53 +00:00
|
|
|
const char *BOINC_RCSID_5a0dc438fe = "$Id$";
|