Click here to Skip to main content
15,911,035 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: Native Exception Error: 0xc0000005 Pin
Luc Pattyn9-Oct-06 15:43
sitebuilderLuc Pattyn9-Oct-06 15:43 
GeneralRe: Native Exception Error: 0xc0000005 Pin
Mark C Eaton9-Oct-06 15:56
Mark C Eaton9-Oct-06 15:56 
QuestionCan not create web applicaion Pin
nkjha17-Oct-06 3:03
nkjha17-Oct-06 3:03 
AnswerRe: Can not create web applicaion Pin
mr_lasseter8-Oct-06 11:29
mr_lasseter8-Oct-06 11:29 
QuestionWeird Biztalk 2006 exception Pin
WillemM6-Oct-06 2:43
WillemM6-Oct-06 2:43 
AnswerRe: Weird Biztalk 2006 exception Pin
WillemM6-Oct-06 3:28
WillemM6-Oct-06 3:28 
Questionwhat is GAC(Global Assembly Cache) and what is meant by digitally signing an assembly Pin
Mushtaque Nizamani6-Oct-06 0:53
Mushtaque Nizamani6-Oct-06 0:53 
AnswerRe: what is GAC(Global Assembly Cache) and what is meant by digitally signing an assembly Pin
Mike Dimmick6-Oct-06 5:27
Mike Dimmick6-Oct-06 5:27 
The Global Assembly Cache is a location which the .NET Framework looks in for shared assemblies (used by more than one program). It looks here first for assemblies which have a strong name, which is a name that includes the version number, culture, and a public key token which identifies the publisher of that assembly. If not found in the GAC it will then fall back to the application directory and directories under it in the same way as for non-signed assemblies.

To ensure that the assembly has not been tampered with, it is digitally signed. This means that public-key cryptography has been used to attach a digital signature to the assembly. A hash (a fixed-size value generated by a one-way function which is highly likely to be unique to a particular input file) is generated, then that hash is encrypted with the publisher's private key to form the signature. On the end-user's system, the publisher's corresponding public key can then be used to decrypt the signature and compare it with re-computing the hash value. If they match, the assembly has not been altered and can potentially be assigned a level of trust as appropriate.

The public key token is a hash of the public key data, used because it is significantly shorter than the public key itself. If I recall correctly, the public key itself is actually attached to the binary since it is required for checking the signature.

Note that although this is a public/private key pair is used, this does not mean the key used has to be part of a public key infrastructure. You don't need to buy one from a Certification Authority, as you do with SSL or Authenticode code-signing certificates - you simply generate a key pair using the sn.exe utility.

Stability. What an interesting concept. -- Chris Maunder

QuestionRDA Pull error 28037 Pin
rsgdba6-Oct-06 0:37
rsgdba6-Oct-06 0:37 
QuestionHow can i learn more about background of the .net framework 2.0 ? Pin
Yanshof5-Oct-06 9:22
Yanshof5-Oct-06 9:22 
AnswerRe: How can i learn more about background of the .net framework 2.0 ? Pin
Praveen Nayak5-Oct-06 17:36
Praveen Nayak5-Oct-06 17:36 
GeneralBeside something like this book - is there anything more\else ? Pin
Yanshof6-Oct-06 5:46
Yanshof6-Oct-06 5:46 
GeneralRe: Beside something like this book - is there anything more\else ? Pin
Kevin McFarlane7-Oct-06 5:26
Kevin McFarlane7-Oct-06 5:26 
Questionbug in XmlReader ? Pin
Chris Losinger5-Oct-06 5:59
professionalChris Losinger5-Oct-06 5:59 
AnswerRe: bug in XmlReader ? Pin
Guffa5-Oct-06 14:13
Guffa5-Oct-06 14:13 
GeneralRe: bug in XmlReader ? Pin
Chris Losinger5-Oct-06 15:00
professionalChris Losinger5-Oct-06 15:00 
AnswerRe: bug in XmlReader ? Pin
Guffa5-Oct-06 21:13
Guffa5-Oct-06 21:13 
GeneralRe: bug in XmlReader ? Pin
Chris Losinger6-Oct-06 1:46
professionalChris Losinger6-Oct-06 1:46 
GeneralRe: bug in XmlReader ? Pin
Mike Dimmick6-Oct-06 4:31
Mike Dimmick6-Oct-06 4:31 
GeneralRe: bug in XmlReader ? Pin
S. Senthil Kumar6-Oct-06 6:00
S. Senthil Kumar6-Oct-06 6:00 
GeneralRe: bug in XmlReader ? Pin
Mike Dimmick7-Oct-06 1:20
Mike Dimmick7-Oct-06 1:20 
GeneralRe: bug in XmlReader ? Pin
S. Senthil Kumar7-Oct-06 1:36
S. Senthil Kumar7-Oct-06 1:36 
AnswerRe: bug in XmlReader ? Pin
Guffa6-Oct-06 4:32
Guffa6-Oct-06 4:32 
GeneralRe: bug in XmlReader ? Pin
Chris Losinger6-Oct-06 4:49
professionalChris Losinger6-Oct-06 4:49 
GeneralRe: bug in XmlReader ? Pin
Guffa6-Oct-06 10:04
Guffa6-Oct-06 10:04 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.