up vote 0 down vote favorite
share [g+] share [fb]

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.

link|improve this question

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

3 Answers

up vote 1 down vote accepted

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|improve this answer
feedback

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|improve this answer
Thanks for the info. I appreciate. – Izmoto Jan 29 '09 at 13:01
feedback

Most common is to implement the OAuth protocol. This is what is used for the OpenSocial providers that checks authorization with 2-legged and/or 3-legged oAuth

Just do some google search and you will find a lot of implementations.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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