how to encrypt soap message in silverlight.. i am currently looking for ideas… as silverlight doesn’t support WCF Message Security..
i have gone through a post by Peter Bromberg but it is also not discussing the idea about when how to exchange public/private keys or sort of…
how to encrypt soap message in silverlight.. i am currently looking for ideas… as
Share
The approach discussed in the post doesn’t appear to do any asymmetric key exchange (as TLS does). Instead it relies on a symmetric key that is generated based on some assembly metadata. See the last paragraph of the article:
It’s not a very strong key generation mechanism as an attacker could simply download the same Silverlight application fire up a debugger and get the key. However it will protect any man-in-the-middle attacks where the attacker only has access to your HTTP traffic.
Personally I’d stick with SSL, with a self signed certificate if the goal is to have a free solution.