Home All Groups Group Topic Archive Search About

.NET Security

microsoft.public.dotnet.security
Score API to access loaded assembly hash
Dominick Baier [DevelopMentor] - 19 Feb 2005 12:01 PM - 15 messages
You can iterate through the evidence collection of a loaded assembly which gives you the hash. see the code attached. --- Dominick Baier - DevelopMentor [link] try { Assembly a = Assembly.LoadFrom(args[0]); IEnumerator it = a.Evidence.GetEnumerator(); ...