How can I get the .Net assembly hash for strong names?

When you sign an assembly, the assembly is created first hash value

. The hash value is then encrypted with the private key and placed along with the public key. But is there a way to get this assembly hash value? (Because it is also computed at runtime and compared to the one stored, decrypted.)

Thank.

+3


source to share


1 answer


to use signtool.exe: signtool verify / v / pa mydll.dll | find "hash"



0


source







All Articles