vote up 0 vote down star

Hi all,

I have developed a 'REST-like' XML API that I wish to expose for consumption by third-party web applications. I'm now looking to implement a security model for the exchange of data between a third-party application and the 'REST-like' XML API. I would appreciate suggestions for a suitable asymmetric encryption model.

Thanks.

flag

80% accept rate
What's wrong with HTTPS / SSL? Or is the "REST-like" not HTTP at all? – Jonas Elfström Jan 29 at 12:43
Why the non-descriptive title? – Justice Jan 29 at 12:47
@jonelf - nothing wrong with https/ssl - I wanted stackoverflow's opinion before I get down to work. thanks :) – Izmoto Jan 29 at 13:04
@Justice - sorry, forgive my english skills. – Izmoto Jan 29 at 13:04

2 Answers

vote up 1 vote down check

If you want encryption why not just use SSL to encrypt the connection rather than encrypting the response data? If 128-bit SSL isn't sufficient, then you'll either need to integrate some existing PKI infrastructure using an external, trusted authority or develop a key distribution/sharing infrastructure yourself and issue your public key and a suitable private key/identifier to your API consumers. Choose one of the cryptography providers in System.Security.Cryptography that supports public/private key exchange.

link|flag
vote up 0 vote down

HTTPS works with asymmetric key encryption. It is well-known protocol easy to implement. It protects against 3p intrusion in your communication.

All you need to implement "below" is authentication - to make sure your user known to you.

Common thing to do is to provide users with key that needs to be sent with every request.

link|flag
Thanks for the info. I appreciate. – Izmoto Jan 29 at 13:01

Your Answer

Get an OpenID
or

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