场景如下:
我想将图像上传到服务器。但是在上传文件之前,我必须发送该SHA1
文件的校验和,以便服务器可以检查文件是否已经上传,所以我不会再次上传。
问题是对于同一个文件,我在我的应用程序和服务器端没有得到相同的SHA1
校验和。
这是我的 Android 应用程序中的代码:
public static String getSHA1FromFileContent(String filename)
throws NoSuchAlgorithmException, IOException {
final MessageDigest messageDigest = MessageDigest.getInstance("SHA-1");
InputStream is = new BufferedInputStream(new FileInputStream(filename));
final byte[] buffer = new byte[1024];
for (int read = 0; (read = is.read(buffer)) != -1;) {
messageDigest.update(buffer, 0, read);
}
is.close();
// Convert the byte to hex format
Formatter formatter = new Formatter();
for (final byte b : messageDigest.digest()) {
formatter.format("%02x", b);
}
String res = formatter.toString();
formatter.close();
return res;
}
这是服务器端的代码:
def hashFile(f):
sha1 = hashlib.sha1()
if hasattr(f, 'multiple_chunks') and f.multiple_chunks():
for c in f.chunks():
sha1.update(c)
else:
try:
sha1.update(f.read())
finally:
f.close()
return sha1.hexdigest()
有什么问题,为什么我会得到不同的SHA1
校验和?