Purpose of 64-bit public key token in .NET Assembly?

What is the purpose of 64 bit public key token in .NET assembly. I understand that the public key corresponding to the private key that is used to sign the assembly is embedded in the assembly itself. What purpose does the 64-bit public key current serve when the public key as a whole is available?

+1


a source to share


1 answer


This is part of the fully qualified assembly name - using a 64-bit token is ultimately unique enough not to cause problems, while still not making the assembly name too long.



+1


a source







All Articles