Is it possible to use the Assembly.LoadFrom overload with the Evidence parameter to ensure the assembly is strongly named? I want to be able to specify the assembly name, culture, version, and public key token. If any of this information does not match the assembly should fail to load.
|
|
|
|
|
|
|
You can get an Assembly's public key after loading it - if it loads successfully and has a public key, then it's strong-named:
Better still, check the assembly's public key and version info before loading it:
If GetPublicKey() returns a non-null value, and then the assembly successfully loads, it has a valid strong name. |
|||
|
|
|
|
I have a way for breaking the strong-name verification for patching System.Windows.Forms.dll. If I'm using it, there's not much you can do about it. EDIT: my trick requires full trust. |
||||
|
|
|
I found another way to do this.
|
||
|
|
