We are deploying an executable to a partner's site off our network. The executable will dynamically load assemblies from a folder to perform certain tasks.

The executable will be signed and timestamped using a certificate issued by our CA. I want to ensure that assemblies loaded by the executable have been signed by our CA. How do I do this using C#?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You need to compare IssuerName properties of corresponding instances of X509Certificate2 class. Note that IssuerName is a reference to complex object whose properties must be inspected and compared.

link|improve this answer
This may be a dumb question, but as the IssuerName is just a string, what is stopping it being impersonated? – Sean Kearon Dec 6 '11 at 14:24
@SeanKearon IssuerName is not a string but an RDN (complex structure). IssuerName is part of the certificate which is signed. If you validate the certificate and find it valid, then you know that issuer name was not altered. Of course, certificate must be validated before you use it (and trust it). – Eugene Mayevski 'EldoS Corp Dec 6 '11 at 16:25
Thanks Eugene, much appreciated :) – Sean Kearon Dec 6 '11 at 16:30
I've just re-read your answer to my comment again. Sorry to be a pain, but...what I meant to ask was not whether the cert had been tampered, but what is stopping someone setting up a CA with the same name as ours (CN = MyRootCA, DC = myDC, DC = net)? – Sean Kearon Dec 6 '11 at 16:39
@SeanKearon One way is to also check (a) Subject and Issuer names, and (b) serial numbers of CA certificates and up to the trusted root. – Eugene Mayevski 'EldoS Corp Dec 6 '11 at 18:40
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.