vote up 4 vote down star
4

Hi,

I am little curious to know about how the openId works.
And is there any difference between the openId authentication and the authentication which the sites use exclusively for themselves?

Thanks.

flag

Not a dup, but this one is very useful stackoverflow.com/questions/318677/… – Paul Tomblin Dec 9 '08 at 19:23
I think this is a dupe: stackoverflow.com/questions/123671/… If no one disagrees then I'll close it in a few. – EBGreen Dec 9 '08 at 19:25
The link is more how to implemented open id. Here is how it works (how open id works with authentification and not how it works if someone would like to add it to his website). I think? – Daok Dec 9 '08 at 19:33
Ehh...that's fine. I was borderline anyway. I have a feeling a lot of the answers will cover the same info. – EBGreen Dec 9 '08 at 19:35
I think it's a duplicate from this one : stackoverflow.com/questions/69076/… – Daok Dec 9 '08 at 19:37
show 2 more comments

2 Answers

vote up 6 vote down check

What is OpenId?

OpenID is an open, decentralized, free framework for user-centric digital identity. OpenID takes advantage of already existing internet technology (URI, HTTP, SSL, Diffie-Hellman) and realizes that people are already creating identities for themselves whether it be at their blog, photostream, profile page, etc. With OpenID you can easily transform one of these existing URIs into an account which can be used at sites which support OpenID logins.

OpenId

Difference between OpenId and conventional authentification form?

The difference it's that the identification will be decentralized to an external site (example Wordpress, yahoo...). The website will know that the identification is ok or not and let you loggin.Conventional authentification form do a comparison to their private database and let you loggin or not. You can only use the loggin-password to this website. With openId you can use the same loggin-password on multiple website.

How it works?

Steps

  1. User connect to OpenID enabled website.
  2. User enter credential information.
  3. A Post is made with a BASE64 (website to provider)
  4. An answer is built (that contain expiration)
  5. The website redirect the user to the provider to login.
  6. User enter password and submit.
  7. Verification is done.
  8. Login!
link|flag

Your Answer

Get an OpenID
or

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