vote up 5 vote down star

I'm planning to add openid support for a web application I'm building. I can't seem to find the maximum length of a valid openid so I can store it in my database. I've seen some vague references to 255 but I'd rather be sure.

In addition is it useful to use the openid as the username (recommendations)?

flag

4 Answers

vote up 5 vote down check

an OpenID is a URI, so you are limited by the maximum length of a URI. As far as I know there is no limit, but some browsers (such as Internet Explorer) have a limit.

Further reading:

http://openid.net/pipermail/general/2008-August/005305.html

link|flag
Thanks that was useful. – Ruggs Apr 16 at 3:39
vote up 0 vote down

You should not accept any OpenID URL that is longer than 255. While it is possible, many can use this as an attack vector to pull off things like SQL Injection. Take a look at the OWASP AntiSAMY APIs as an additional protection.

link|flag
vote up 1 vote down

There isn't an official length in version 2.0 of the spec.

You can hash the URL provided into something unique (md5, or some other repeatable hash) and store that in your DB as a much shorter string.

As for using it as a username, a big url is not pretty. You can extract a username from the responses (SO got my username directly from my OpenID)

link|flag
I never thought of storing it as a hash. That makes sense. – Ruggs Apr 16 at 3:40
REALLY bad idea. MD5 and SHA-1 have been broken, so I could hack into your RP as anyone I wished just by contriving a claimed id that hashed to the same value. You could mitigate this by uniquely salting each hash, but it's by far bes to just store the whole thing. – Andrew Arnott Apr 17 at 3:02
So how would you send the md5/sha-1 hash from the provider? OpenID responses must come from the trusted provider to be valid in the first place. – Ruggs Apr 17 at 5:59
I'm not talking about sending the hash to or receiving it form the provider. I'm also not talking about the hash being shown anywhere to a front-end user. I'm merely talking about storing it as a means of using less DB storage, with a fixed, calculated size rather than an unknown length of any URL. The user will always have to provide a valid URL to login, my application would then validate using proper OpenID methods and then store a hash of the URL as a reference only. – Darryl E. Clarke Apr 17 at 15:20
vote up 1 vote down

I would not use the OpenID directly as the username. Just have a look at the OpenID URLs that Yahoo provides to users, they're incomprehensible. Allow users to choose their own username, and ideally allow multiple OpenID URLs to be associated with one user account (like Stack Overflow does).

link|flag
I will be storing the openid in a separate table from the user database so it will support multiple openids. – Ruggs Apr 16 at 3:37

Your Answer

Get an OpenID
or

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