How do I define channel security in WCF to encrypted messages using by a hard-coded symmetric key with AES256 standard? I do not want to use certificates and I am aware that this is a "weak" security practice.

link|improve this question

57% accept rate
1  
Why not use and trust the same self signed certificate with the same private key on both sides? I understand why you would not want PKI, but it would amount to about the same thing... – owlstead Mar 10 at 12:17
Actually this method is acceptable as a solution in ms scenario. However, in the long time passed since I asked the question I have decided to implement my security by configuring Windows to do IPSec intead. This also has the advantage of being transparent to the application. – dux2 Mar 11 at 5:15
@owlstead - so assuming you go with certificates (which is also the direction I'm heading in now) but not have the same cert on both sides can you describe how to restrict it so that only certain clients can access the service? (since symmetric encryption is sort of ensuring both encryption and that the 2 parties are known to each other). If you can stick that in your answer I'll probably award the bounty to you (fwiw). – Xiaofu Mar 11 at 13:23
Most of the time you can retrieve the certificates that clients use to authenticate to the server from the server side code. So in that case you have a two step authentication - you create an SSL connection based on the PKI, and then you filter out the right clients by requesting the cert. from the SSL implementation. I'm no WCF wiz, I found some stuff regarding Identities, maybe use that as a starter. – owlstead Mar 11 at 14:02
feedback

2 Answers

WCF does not support pre-shared key (PSK) it seems, more information here:

Does .NET support TLS-PSK?

link|improve this answer
That's true, out of the box WCF does not support it because it is considered less secure. Knowing this, @dux2 & I am therefore looking for a more concrete custom solution. I've looked into MessageInspectors and I guess you'd also need to turn off the standard WCF security (some crude authentication could be passed along with the encrypted msg instead). – Xiaofu Mar 10 at 4:32
feedback

There is no configuration option to achieve this...

You will need to work with MessageInspectors, MessageFormatters and similar - for some good starting points see:

It might even be necessary to work with OperationSelectors...

link|improve this answer
A nice reading list to dive into, thanks. I have already made some prototypes using both message inspectors for custom encryption, and custom certificate validators for using certs as owlstead suggested so I expect I'll eventually arrive at a satisfactory solution that is 'secure enough'. – Xiaofu Mar 15 at 13:07
@Xiaofu you are welcome :-) – Yahia Mar 15 at 13:16
feedback

Your Answer

 
or
required, but never shown

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