I have a published asp.net website for which I need to calculate the MD5 check sum (to ensure its integrity at a later time).
As the website folder has multiple files, is there a way that is usually used for calculating MD5 hash in such scenarios?
I have a published asp.net website for which I need to calculate the MD5 check sum (to ensure its integrity at a later time).
As the website folder has multiple files, is there a way that is usually used for calculating MD5 hash in such scenarios?
You want to sign your assemblies with a Strong Name. .Net offers SNK, see this link: The Secrets of Strong Naming
This post has a great explaination as well.