摘要: 最近改造了一个用MD5算法校验文件的方法,在linux c 下可用// MD5C.cpp : Defines the entry point for the console application.//#include<stdio.h>#include<string.h>#include<stdlib.h>#define F(x, y, z) (((x) & (y)) | ((~x) & (z)))#define G(x, y, z) (((x) & (z)) | ((y) & (~z)))#define H(x, y, z) 阅读全文
posted @ 2012-11-28 10:34 Nick.huang 阅读(3263) 评论(0) 推荐(0)