summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Åkre Solberg <andreas.solberg@uninett.no>2008-03-11 15:36:14 +0000
committerAndreas Åkre Solberg <andreas.solberg@uninett.no>2008-03-11 15:36:14 +0000
commitcfbe9d85188e892ed10089dc18bd62d2e331651a (patch)
treea438d043815478454333f27885b066f5c5746c8d
parent70218a72e47a1f7fc7fe17ddbbf93a76e5e5038a (diff)
downloadsimplesamlphp-cfbe9d85188e892ed10089dc18bd62d2e331651a.zip
simplesamlphp-cfbe9d85188e892ed10089dc18bd62d2e331651a.tar.gz
simplesamlphp-cfbe9d85188e892ed10089dc18bd62d2e331651a.tar.bz2
Updated list of mandatory versus optional parameters
git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@393 44740490-163a-0410-bde0-09ae8108e29a
-rw-r--r--docs/source/simplesamlphp-sp.xml37
1 files changed, 25 insertions, 12 deletions
diff --git a/docs/source/simplesamlphp-sp.xml b/docs/source/simplesamlphp-sp.xml
index 0bd43d7..e7122e8 100644
--- a/docs/source/simplesamlphp-sp.xml
+++ b/docs/source/simplesamlphp-sp.xml
@@ -7,7 +7,7 @@
<articleinfo>
<date>2007-10-15</date>
- <pubdate>Wed Mar 5 15:38:05 2008</pubdate>
+ <pubdate>Wed Mar 5 15:38:05 2008</pubdate>
<author>
<firstname>Andreas Åkre</firstname>
@@ -74,7 +74,7 @@
* Example of a hosted SP
*/
'sp-entityid' =&gt; array(
- 'host' =&gt; 'sp.example.org'
+ 'host' =&gt; 'sp.example.org'
)</programlisting>
</example>
@@ -109,7 +109,7 @@
<glosslist>
<glossentry>
- <glossterm>index (the index of the array)</glossterm>
+ <glossterm>key (the key of the associative array)</glossterm>
<glossdef>
<para>The entity ID of the hosted SP entity.</para>
@@ -149,10 +149,21 @@
<glossdef>
<para>Force authentication is a parameter that allows you to
- force re-authenticatino of users even if the user contains a SSO
+ force re-authentication of users even if the user has a SSO
session at the IdP.</para>
</glossdef>
</glossentry>
+
+ <glossentry>
+ <glossterm>AuthnContextClassRef</glossterm>
+
+ <glossdef>
+ <para>The SP can request authentication with a specific
+ authentication context class. One example of usage could be if
+ the IdP supports both username/password authentication as well
+ as software-PKI.</para>
+ </glossdef>
+ </glossentry>
</glosslist>
</section>
@@ -189,7 +200,10 @@
<glossdef>
<para>The filename of the certificate which corresponds to the
- privatekey.</para>
+ privatekey. This is highly optional, and the certificate is not
+ used right now, but is reserved for future use. Then the
+ certificate will be used to generate SAML 2.0 Metadata to export
+ to the IdP.</para>
</glossdef>
</glossentry>
</glosslist>
@@ -197,9 +211,8 @@
<example>
<title>Example of configured signed requests</title>
- <programlisting>'request.signing' =&gt; true,
-'privatekey' =&gt; 'server.pem',
-'certificate' =&gt; 'server.crt'</programlisting>
+ <programlisting> 'request.signing' =&gt; true,
+ 'privatekey' =&gt; 'server.pem',</programlisting>
</example>
</section>
</section>
@@ -236,7 +249,7 @@
<glosslist>
<glossentry>
- <glossterm>index (the index of the array)</glossterm>
+ <glossterm>key (the key of the associative array)</glossterm>
<glossdef>
<para>The entity ID of the remote IdP.</para>
@@ -306,7 +319,7 @@
<glosslist>
<glossentry>
- <glossterm>base64encode</glossterm>
+ <glossterm>base64attributes</glossterm>
<glossdef>
<para>Is the IdP base64 encoding all the attributes?
@@ -391,7 +404,7 @@
<para>Here is an example from <filename>config.php</filename>:</para>
- <programlisting> 'default-saml20-idp' =&gt; 'sam.feide.no',</programlisting>
+ <programlisting> 'default-saml20-idp' =&gt; 'sam.feide.no',</programlisting>
<para>The configuration above will use the IdP configured in IdP Remote
metadata with entity ID equal to <literal>sam.feide.no</literal>.</para>
@@ -406,7 +419,7 @@
service to let the user select IdP. Here is the neccessary configuration
from <filename>config.php</filename>:</para>
- <programlisting> 'default-saml20-idp' =&gt; null,</programlisting>
+ <programlisting> 'default-saml20-idp' =&gt; null,</programlisting>
</section>
</section>