From 665c364c1bac162d8de35e4827e1b214c4b22cef Mon Sep 17 00:00:00 2001 From: Olav Morken <olav.morken@uninett.no> Date: Tue, 10 May 2011 10:33:25 +0000 Subject: [PATCH] saml:AuthnContextClassRef: Add missing code. git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@2834 44740490-163a-0410-bde0-09ae8108e29a --- .../lib/Auth/Process/AuthnContextClassRef.php | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/modules/saml/lib/Auth/Process/AuthnContextClassRef.php b/modules/saml/lib/Auth/Process/AuthnContextClassRef.php index 4e953c50c..23743783f 100644 --- a/modules/saml/lib/Auth/Process/AuthnContextClassRef.php +++ b/modules/saml/lib/Auth/Process/AuthnContextClassRef.php @@ -29,7 +29,20 @@ class sspmod_saml_Auth_Process_AuthnContextClassRef extends SimpleSAML_Auth_Proc if (!isset($config['AuthnContextClassRef'])) { throw new SimpleSAML_Error_Exception('Missing AuthnContextClassRef option in processing filter.'); } + + $this->authnContextClassRef = (string)$config['AuthnContextClassRef']; } -} \ No newline at end of file + /** + * Set the AuthnContextClassRef in the SAML 2 response. + * + * @param array &$state The state array for this request. + */ + public function process(&$state) { + assert('is_array($state)'); + + $state['saml:AuthnContextClassRef'] = $this->authnContextClassRef; + } + +} -- GitLab