signing an assembly

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi

I need some clarification on signing.

what does it mean--signing an assembly?

where is ti used? How is it used?
 
Signing is giving an assembly unique identity so nobody can mess with it.
You need to give an assembly a strong name to put it into the Global
Assembly cache.


"A strong name consists of the assembly's identity — its simple text name,
version number, and culture information (if provided) — plus a public key
and a digital signature. It is generated from an assembly file using the
corresponding private key. (The assembly file contains the assembly
manifest, which contains the names and hashes of all the files that make up
the assembly.) "


http://msdn.microsoft.com/library/e...ngwithstrongly-namedassemblies.asp?frame=true

Signing an Assembly with a Strong Name

http://msdn.microsoft.com/library/en-us/cpguide/html/cpconassigningassemblystrongname.asp?frame=true

http://msdn.microsoft.com/library/en-us/cptools/html/cpgrfstrongnameutilitysnexe.asp?frame=true
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top