1.下载安装并配置环境变量openssl,可自行在网上寻找。
2.在项目中导入opensll中的“包含(include)”和“库(lib)”
3.选择debug x86平台,不然会报错。
4.运行结果如下。可自行比对
md5 value: 33b3bc8e05b4fcc16bd531dd9adac166
5.代码如下
#define _CRT_SECURE_NO_WARNINGS
#include <openssl/md5.h> // md5 头文件
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
void getMD5(const char* str, char* result)
{
MD5_CTX ctx;
// 初始化
MD5_Init(&ctx);
// 添加数据
MD5_Update(&ctx, str, strlen(str));
// 计算结果
unsigned char md[16] = { 0 };
MD5_Final(md, &ctx);
for (int i = 0; i < 16; ++i)
{
sprintf(&result[i*2], "%02x", md[i]);
}
}
int main()
{
char result[33] = { 0 };
getMD5("hello, md5", result);
printf("md5 value: %s\n", result);
system("pause");
return 0;
}