我有一台运行PHP的服务器,我可以使用管理面板中的自定义表单上传zip存档。当我上传zip存档时,我会计算它的CRC32校验和,然后将其插入到我的数据库中,以便将来进行下载完整性检查:
$zipchecksum = strtoupper(hash_file('crc32', $zippath));
$mysqli->query("INSERT INTO files VALUES (NULL, '$zipname', '$zippath')");
当我使用我的C#客户端向服务器查询要下载的可用文件时,我也会在响应中收到该校验和,如果有新文件可用,我会下载它:
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(Properties.Settings.Default.URLDownload);
request.Accept = "application/octet-stream";
request.ContentType = "application/x-www-form-urlencoded";
request.Method = WebRequestMethods.Http.Post;
using (HttpWebResponse response = (HttpWebResponse)request.GetResponse())
using (Stream responseStream = response.GetResponseStream())
using (MemoryStream memoryStream = new MemoryStream())
{
responseStream.CopyTo(memoryStream);
Crc32 crc = new Crc32();
crc.Update(memoryStream.GetBuffer());
if (crc.Value.ToString("X") != m_ServerData.CRC)
throw new Exception("Malformed zip file received!");
ZipFile file = new ZipFile(memoryStream);
// ...
}
以下是我的回复:
header('Cache-Control: must-revalidate, pre-check=0, post-check=0');
header('Content-Description: File Transfer');
header('Content-Disposition: attachment; filename="'.$zipname.'"');
header('Content-Length: '.filesize($filepath));
header('Content-Transfer-Encoding: binary');
header('Content-Type: application/octet-stream');
header('Expires: 0');
header('Pragma: public');
readfile($zippath);
现在,进行完整性检查。 PHP计算的CRC32校验和与我在客户端使用ICSharpCode.SharpZipLib中的Crc32类计算的CRC32校验和完全不同。例如:
PHP服务器 - > CF83A609
C#客户端 - > 3FB78619
我还尝试使用另一个PHP函数:
$zipcontents = file_get_contents($zippath);
$crc = crc32($zipcontents);
$zipchecksum = strtoupper(dechex(crc32($zipcontents)));
$mysqli->query("INSERT INTO files VALUES (NULL, '$zipname', '$zippath')");
但结果再次不同。
PHP服务器 - > A6A642D0
C#客户端 - > 3FB78619
因此,似乎PHP用于计算校验和的缓冲区与客户端从服务器接收的缓冲区不同。嗯......有人有解决方案吗?
答案 0 :(得分:1)
我有类似的问题,问题不是校验和算法 问题是下载的文件与上传的文件不同。
首先,我会检查文件上传是否与您存储在ddbb中的文件相同。
在MySQL中:
SELECT fileName, md5(fileBlob) FROM yourTable;
其次,我会检查您下载的文件是否与您上传的文件相同。
检查完整性我确实意识到我正在开发的REST正在进行错误的转换。
我知道现在已经很晚了,但希望它有所帮助。