does CLR verify a stringly name assembly if it is not installed into GAC?

  • Thread starter Thread starter Dan
  • Start date Start date
D

Dan

Hi all

does the CLR performs any load-time check for tampering/security on a
strongly name assembly that is privately deployed (not installed into GAC)?

thanks
dan
 
Hi,

As far as I remember, yes. Strong naming is just a requirement for an
assembly to be put into GAC, and if an assembly is strong-named, it will be
checked by the loader regardless of where it is being loaded from.
 
yeap a strong named assembly will be checked whether it is in GAC or deloyed
within apps folder.
when i started with obfuscator... i had little idea about it and i
obfuscatored a strong named private assembly...
and clr chucked out...
 
Back
Top