Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an X509Certificate2 property, and I want to check in the set section, if the value that was set is empty. When I try to access to any X509Certificate2 property such as publickey, I got this exception: System.Security.Cryptography.CryptographicException occurred in mscorlib.dll.

sure, I can write something such this example:

private static X509Certificate2 _certificate;

    public X509Certificate2 Certificate
    {
        get
        {
            return _certificate;
        }
        set
        {
            try
            {
                if (value.PublicKey != null)
                    _certificate = value;
            }
            catch(CryptographicException)
            {
                _certificate = null;
            }

        }
    } 

but I want a nicer way, does any one have an idea?

share|improve this question
4  
What does the exception say? – SLaks Dec 18 '11 at 13:49
this is nothing that can be done universally for every object. It depends on the underlying type – yas4891 Dec 18 '11 at 13:51
Are you sure that value is not null? – Groo Dec 18 '11 at 13:51
@Groo If value were null, I bet he would get a NullReferenceException instead of a CryptographicException when trying to access value.PublicKey – yas4891 Dec 18 '11 at 13:54
1  
Don't hide the exception, that just causes a hard to diagnose other exception later, like NullReferenceException. The certificate is bad, don't let that go unnoticed. – Hans Passant Dec 18 '11 at 13:58
show 2 more comments

3 Answers

You can use the null coalescing operator:

public X509Certificate2 Certificate     
{
     get { return _certificate; }
     set { _certificate = value.PublicKey ?? null; }
}

Basically:

_certificate = value.PublicKey is it isn't null, else it equals null.

But now writing this, I think that will not work, so might need to use a ternary:

public X509Certificate2 Certificate     
{
     get { return _certificate; }
     set { _certificate = value == null ? null : value.PublicKey; }
}

Which means:

_certificates = null if value is null, else it equals value.PublicKey

I think this is the right approach since your value being null will cause the Exception.

share|improve this answer
if - as OP states - the call to value.PublicKey throws an exception, this will not improve things – yas4891 Dec 18 '11 at 13:55
5  
I don't think you understand the problem. The PublicKey property will throw a CryptographicException in its getter if it is in an invalid state. That's his issue. – Marc Dec 18 '11 at 14:00

MSDN said "The key value is not an RSA or DSA key, or the key is unreadable." So maybe yours algorithm is not RSA or DSA. Check what returns GetKeyAlgorithm()

share|improve this answer

You can use the simple option - access the Handle property:

public X509Certificate2 Cretificate
{
   get { return _certificate; }
   set { _certificate = value.Handle == IntPtr.Zero ? null : value}
}

as I know, otherwise when you define:

X509Certificate2 cert = new X509Certificate2();

and will try to set your certificate with the empty cert - you might get an exception.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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