Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm currently implementing a single signon so that users from a desktop application can log into the website related to that application without re-entering account credentials.

I looked over the following link, and I implement it very similar to the 'Accepted Solution'.

Enabling single sign-on between Desktop Application and Website

The implementation does however currently rely on a 'shared secret', an access key that is shared between the 2 programs.

I like'd Andreas Petersson's approach of making a hash out of salting the password and combining that with the token to increase security, but the desktop application does not have access to the password. For the desktop application my code is implemented as a DLL that is loaded automatically and has access to the application data only through an API (It's not able to communicate directly with the database).

Any suggestions on the proper way to do this?

My thought was to use a randomly generated long number stored in the code of both applications, and hash that with the current date, and passing the resultant hash as the access code to allow a token to be generated.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.