2002-09-26 18:11:06 +00:00
|
|
|
// The contents of this file are subject to the Mozilla Public License
|
|
|
|
// Version 1.0 (the "License"); you may not use this file except in
|
|
|
|
// compliance with the License. You may obtain a copy of the License at
|
|
|
|
// http://www.mozilla.org/MPL/
|
|
|
|
//
|
|
|
|
// Software distributed under the License is distributed on an "AS IS"
|
|
|
|
// basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
|
|
|
// License for the specific language governing rights and limitations
|
|
|
|
// under the License.
|
|
|
|
//
|
|
|
|
// The Original Code is the Berkeley Open Infrastructure for Network Computing.
|
|
|
|
//
|
|
|
|
// The Initial Developer of the Original Code is the SETI@home project.
|
|
|
|
// Portions created by the SETI@home project are Copyright (C) 2002
|
|
|
|
// University of California at Berkeley. All Rights Reserved.
|
|
|
|
//
|
|
|
|
// Contributor(s):
|
|
|
|
//
|
|
|
|
|
2002-04-30 22:22:54 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#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
|
|
|
|
|
|
|
int md5_file(char* path, char* output, double& nbytes) {
|
|
|
|
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-08-20 00:30:13 +00:00
|
|
|
fprintf(stdout, "md5_file: can't open %s\n", path);
|
2002-05-24 04:29:10 +00:00
|
|
|
perror("md5_file");
|
|
|
|
return -1;
|
|
|
|
}
|
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
|
|
|
|
|
|
|
int md5_block(unsigned char* data, int nbytes, char* output) {
|
|
|
|
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;
|
|
|
|
}
|