wcf-encryption

WCF - How do I encrypt messages?

My WCF service involves the sending of a dataset (in csv format) data between client and service. This dataset must be encrypted so that the data cannot be intercepted. I'm using wshttpbinding and trying to encrypt the message by using the following settings in web.config: <wsHttpBinding> <binding name="wsHttp"> <reliableSession e...

Customer WCF Bindings / Binding Elements For Encryption

I am trying to implement encryption for my WCF service. I am aware that there are several options out there for me to do this. I am not interested in them. I would like to use a password to regenerate repeatable RSA keys. These keys will then be used to exchanged AES keys which will be used to encrypted the actual passed data. I think I...