BinaryFormatter ignore assembly version

元气小坏坏 提交于 2019-12-01 06:03:33

问题


I have the following method to generate a hash of an object. It works pretty good! But when I change the version of the assembly, the hash is changing even when the object is the same.

public static string GetHash(Object item)
{
    MemoryStream memoryStream = new MemoryStream();
    BinaryFormatter binaryFormatter = new BinaryFormatter();
    binaryFormatter.Serialize(memoryStream, item);
    binaryFormatter.AssemblyFormat = FormatterAssemblyStyle.Simple;

    HashAlgorithm hashAlgorithm = new MD5CryptoServiceProvider();
    memoryStream.Seek(0, SeekOrigin.Begin);

    return Convert.ToBase64String(hashAlgorithm.ComputeHash(memoryStream));
}

How is it possible to ignore the assembly version?


回答1:


But when I change the version of the assembly, the hash is changing even when the object is the same.

yes, that is expected behaviour when using BinaryFormatter... it does not guarantee to create the same output - and especially since it includes full type information (including version) it is pretty much guaranteed to change between versions.

I would consider using a serializer that doesn't include type information; XmlSerializer, Json.NET or protobuf-net would leap to mind.




回答2:


BinaryFormatter.AssemblyFormat is documented as:

Gets or sets the behavior of the deserializer with regards to finding and loading assemblies.

There's no indication that it has an impact on the serializing path.

Personally I would avoid this method of hashing - it seems terribly fragile to me. Do you have no control over the object being hashed, or any way of hashing in a more stable way?



来源:https://stackoverflow.com/questions/19289898/binaryformatter-ignore-assembly-version

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!