vote up 1 vote down star
1

I'm currently working on a project that requires encrypted data be passed between WCF hosts. As I understand it there are only 2 ways to ensure that data passed over WCF is secure.

  1. Using Certificates
  2. Using a Domain (or having the same username and password on every machine on the network)

Using certificates can be expensive and complicated to manage and since we're not guaranteed to have a server class machine at every deployment a Domain is also out of the question. Having every machine use the same username and password is also problematic if that password ever needs to be changed.

Currently we use OpenSSH to tunnel our connections between hosts. Is there another option built into the framework that I'm unaware of?

flag

I'm also curious about the answer to this; is there any reason ssh tunneling is insufficient? – Luke Sep 8 '08 at 21:07
What kind of binding are you using? – Kearns Oct 7 '08 at 18:27
Currently we use net.tcp binding but any binding would be fine. SSH isn't insufficient it's just complicated to get setup on client machines – Mykroft Oct 7 '08 at 21:16

4 Answers

vote up 0 vote down

The cheapest method is probably to run your own certification authority. This means you have total control over the certificates, but you do not have to pay for external certification. If you automate this appropriately, you can give every machine on your net a cryptographic identity and use your local certification to tie everything together.

link|flag
I wouldn't say that's the cheapest method. We did consider that but it would have taken a tone of work to setup and maintain. – Mykroft Oct 29 '08 at 15:25
vote up 1 vote down

Encryption requires a key. Keys are usually implemented as certificates. If you own both sides of the communication, you can create your own certificate for free without having to go buy one from a trusted root authority.

link|flag
vote up 0 vote down

Use traditional encryption of the data that you are placing inside the WCF container. Maybe something like the following:

http://www.obviex.com/samples/EncryptionWithSalt.aspx

link|flag
We considered this but to maintain strong typing of the functions it has to happen at a much lower level. – Mykroft Sep 8 '08 at 21:16
vote up 0 vote down

If you are using a http endpoint, you can use a secure transport such as https.

link|flag
That still requires certificates... – Chris Lively Sep 8 '08 at 21:08

Your Answer

Get an OpenID
or

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