我正在尝试创建一个md5哈希,我正在与php md5哈希进行比较。
这两个不接缝是相同的
下面是我的c代码以及php compairison为什么两个md5不一样?
制作命令
gcc -Wall -lssl -o test test.c
Code test.c
#include <stdio.h>
#include <openssl/md5.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <openssl/md5.h>
#include <time.h>
unsigned char result[MD5_DIGEST_LENGTH];
// Print the MD5 sum as hex-digits.
void print_md5_sum(unsigned char* md, char* md5) {
int i;
for(i=0; i < MD5_DIGEST_LENGTH; i++) {
char temp[3];
snprintf(temp,sizeof(temp),"%02x",md[i]);
if(i == 0){
strncpy(md5,temp,3);
}else{
strncat(md5,temp,MD5_DIGEST_LENGTH);
}
}
printf("md5 is %s \n", md5);
}
int main(int argc, char** argv ){
char* file_buffer = "testtest";
char buffer[MD5_DIGEST_LENGTH +1];
MD5((unsigned char*) file_buffer, sizeof(file_buffer), result);
printf("length %i\n", MD5_DIGEST_LENGTH);
print_md5_sum(result,buffer);
printf("%s \n" ,buffer);
return 0;
}
php code
<?php
echo md5("testtest");
?>
结果
php md5
05a671c66aefea124cc08b76ea6d30bb
c code md5
098f6bcd4621d373cade4e832627b4f6
答案 0 :(得分:7)
sizeof(file_buffer)
没有给出正确的长度来计算MD5总和。它只给你指针file_buffer的大小,根据你的平台,它可能是4或8。
在这种情况下,你可能更好地调用MD5()函数:
MD5((unsigned char*) file_buffer, strlen(file_buffer), result);