attributemap: Add a couple of schac attributes to the oid mapping.

This patch adds the schacHomeOrganization and schacPersonalUniqueCode
attributes to the name2oid map and the oid2name map.

Thanks to Georg Gollmann for providing this patch!

git-svn-id: http://simplesamlphp.googlecode.com/svn/trunk@3028 44740490-163a-0410-bde0-09ae8108e29a
This commit is contained in:
olavmrk 2012-02-03 12:03:07 +00:00
parent b215f64bff
commit 819c3b98dd
2 changed files with 4 additions and 0 deletions

View File

@ -160,5 +160,7 @@ $attributemap = array(
'userid' => 'urn:oid:0.9.2342.19200300.100.1.1',
'x121Address' => 'urn:oid:2.5.4.24',
'x500UniqueIdentifier' => 'urn:oid:2.5.4.45',
'schacHomeOrganization' => 'urn:oid:1.3.6.1.4.1.25178.1.2.9',
'schacPersonalUniqueCode' => 'urn:oid:1.3.6.1.4.1.25178.1.2.14',
);
?>

View File

@ -139,5 +139,7 @@ $attributemap = array(
'urn:oid:2.5.4.7' => 'l',
'urn:oid:2.5.4.8' => 'st',
'urn:oid:2.5.4.9' => 'street',
'urn:oid:1.3.6.1.4.1.25178.1.2.9' => 'schacHomeOrganization',
'urn:oid:1.3.6.1.4.1.25178.1.2.14' => 'schacPersonalUniqueCode',
);
?>