Modifying LDAP schema to support Cardspace and OpenID - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T15:59:45Zhttp://stackoverflow.com/feeds/question/765273http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/765273/modifying-ldap-schema-to-support-cardspace-and-openid1Modifying LDAP schema to support Cardspace and OpenIDjm044692009-04-19T11:40:13Z2009-06-23T08:00:15Z
<p>I am seeking examples of how others have modified LDAP schemas to support Cardspace and/or OpenID. Links to LDIFs or other documentation is greatly appreciated.</p>
http://stackoverflow.com/questions/765273/modifying-ldap-schema-to-support-cardspace-and-openid/776298#7762980Answer by Stefan Gehrig for Modifying LDAP schema to support Cardspace and OpenIDStefan Gehrig2009-04-22T09:03:59Z2009-04-22T09:03:59Z<p>Without having done a LDAP-InfoCard-OpenID-integration I don't think that modifying the LDAP schema to incorporate the required information is that difficult.</p>
<p>For OpenID you have to store the OpenID and for identifiying InfoCard-authorized users you have to store the private personal identifier (PPID) of the respective InfoCard in your LDAP user object.</p>
<p>As an OpenID is merely a URI the LDAP attribute can be of the same type as for example <code>labeledURI</code> (Directory String (1.3.6.1.4.1.1466.115.121.1.15), caseExactMatch (2.5.13.5)).</p>
<p>The InfoCard private personal identifier (PPID) is a base64-encoded byte array (the length is undefined so you should require an appropriate maximum length; just a guess, but I think 48 characters will be enough as the PPID is a SHA256 hash with 32 bytes and base64-encoding will require about 1.3 times the storage space), so you could go with an <code>IA5 String</code>.</p>