vote up 0 vote down star

I'm no crypto expert, but as I understand it, 3DES is a symmetric encryption algorithm, which means it doesnt use public/private keys.

Nevertheless, I have been tasked with encrypting data using a public key, (specifically, a .CER file). If you ignore the whole symmetric/asymmetric thang, I should just be able to use the key data from the public key as the TripleDES key. However, I'm having difficulty extracting the key bytes from the .CER file. This is the code as it stands..

TripleDESCryptoServiceProvider cryptoProvider = new TripleDESCryptoServiceProvider();
X509Certificate2 cert = new X509Certificate2(@"c:\temp\whatever.cer");
cryptoProvider.Key = cert.PublicKey.Key.

The simplest method I can find to extract the raw key bytes from the certificate is ToXmlString(bool), and then doing some hacky substringing upon the returned string. However, this seems so hackish I feel I must be missing a simpler, more obvious way to do it.

Am I missing a simpler way to use a .cer file to provide the key data to the C# 3DES crypto class, or is hacking it out of the certificate xml string really the best way to go about this?

flag

67% accept rate
Wouldn't it be better to figure out what they actually want, since asking for public key crypto with a symmetric algorithm plainly isn't it? – Nick Johnson Sep 23 '08 at 14:50
I don't know about you, Arachnid, but in my experience its just easier to go with the flow. The questioner seems quite aware of the incompatibility here, so why not just let him do what he was asked to do? – Alex Lyman Sep 23 '08 at 15:15
@Alex: Because, as Alexander points out, it will almost certainly result in an insecure implementation that doesn't do what's actually wanted. – Nick Johnson Sep 23 '08 at 15:19
I realise that, but it seems to be what the client wants. I'll confirm it with them, and point out the problem, but if this is really their standard, then so be it.Hopefully it isn't, and the specification is simply wrong/lacking... – Gabriel Sep 23 '08 at 15:23
I suspect what they really want is a 3DES encrypted message to be wrapped up (with IV?) in an asymmetric encryption scheme, such as RSA. As in, msg -> 3DES -> enc msg + IV -> RSA -> msgToDeliver. That would make much more sense, right? – Gabriel Sep 23 '08 at 15:26
show 1 more comment

5 Answers

vote up 2 vote down check

cryptoProvider.Key = cert.GetPublicKey()?

link|flag
I feel silly now... So obvious! – Gabriel Sep 23 '08 at 14:57
vote up 4 vote down

It's not a good idea to use keys generated for asymmetric cryptography for symmetric cryptography. There's nothing preventing you from coming up with a way of using a public key as an encryption key for 3DES, but the end result will be that anyone having access to the public key (and this means everyone!) will be able to decrypt your ciphertext.

link|flag
vote up 1 vote down

Encrypting large amounts of data with asymmetric cryptography is not the way to go. Instead, encrypt the data with a symmetric algorithm and encrypt the symmetric key (and IV) with your public key.

This page from MSDN really helped me get going with .Net symmetric cryptography.

link|flag
vote up 1 vote down

The real problem here is that the public key is, well, public. Meaning freely available, meaning it's providing zero security of encryption.

Heck, anyone on this thread has all the information they need to decrypt everything. So do googlers.

Please try to encourage your users not to use public key data like that. At the very least, get them to give a password or some other slightly-more-secure chunk you can use to generate a consistent key.

One more thing. Certificate keys vary in size. It can probably handle throwing away extra bytes in the key, but you'll probably get an Array Index / Out Of Bounds exception if the key happens to be shorter than the 3DES key needs. I doubt that'll happen, 3DES only needs 56bits, and cert keys are almost always 256bits or larger.

link|flag
vote up 0 vote down

I think what you are missing is converting the bytes from the string containing the key-bytes.

Hope the method FromBase64String will help you:

byte[] keyBytes = Convert.FromBase64String(sourceString);
link|flag

Your Answer

Get an OpenID
or

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