Home
last modified time | relevance | path

Searched refs:saml (Results 1 – 10 of 10) sorted by last modified time

/plugin/adfs/
H A Dhelper.php11 protected $saml; variable in helper_plugin_adfs
20 if ($this->saml === null) {
22 $this->saml = new OneLogin_Saml2_Auth($this->createSettings());
24 return $this->saml;
H A Daction.php32 $saml = $hlp->getSamlLib();
37 $xml = $saml->getSettings()->getSPMetadata();
H A Dauth.php10 protected $saml; variable in auth_plugin_adfs
29 $this->saml = $hlp->getSamlLib();
58 $url = $this->saml->login(
71 $this->saml->processResponse();
72 if ($this->saml->isAuthenticated()) {
121 msg('ADFS: '.hsc($this->saml->getLastErrorReason()), -1);
193 $data = $this->saml->getAttribute($attr);
/plugin/adfs/phpsaml/
H A DCHANGELOG42 * [#265](https://github.com/onelogin/php-saml/issues/265) Support parameters at getSPMetadata method
57 * [#242](https://github.com/onelogin/php-saml/pull/242) Document that SHA-1 must not be used
86 * [#183](https://github.com/onelogin/php-saml/pull/183) Fix strpos bug when decrypting assertions
87 * [#186](https://github.com/onelogin/php-saml/pull/186) Improve info on entityId validation Excepti…
103 * [#173](https://github.com/onelogin/php-saml/pull/173) Provide better support to NameIdFormat
115 * Reject saml:Attribute element with same “Name” attribute
123 * [#154](https://github.com/onelogin/php-saml/pull/154) getSelfHost no longer returns a port number
125 * [#158](https://github.com/onelogin/php-saml/pull/158) NEW Control usage of X-Forwarded-* headers
134 * [132](https://github.com/onelogin/php-saml/pull/132) Add note for "wantAssertionsEncrypted"
142 * [128](https://github.com/onelogin/php-saml/pull/128) Test php7 and upgrade phpunit
[all …]
H A DREADME.md3saml.png?branch=master)](http://travis-ci.org/onelogin/php-saml) [![Coverage Status](https://cover…
109 git clone git@github.com:onelogin/php-saml.git
131 composer require onelogin/php-saml
137 and settings file stored at `vendor/onelogin/php-saml`.
630 define("TOOLKIT_PATH", '/var/www/php-saml/');
657 define("TOOLKIT_PATH", '/var/www/php-saml/');
711 define("TOOLKIT_PATH", '/var/www/php-saml/');
756 define("TOOLKIT_PATH", '/var/www/php-saml/');
898 define("TOOLKIT_PATH", '/var/www/php-saml/');
1006 define("TOOLKIT_PATH", '/var/www/php-saml/');
[all …]
/plugin/adfs/phpsaml/lib/Saml2/
H A DUtils.php1375 $issuerNodes = self::query($dom, '/'.$rootNode->tagName.'/saml:Issuer');
H A DResponse.php1141 if (!$decrypted->hasAttributeNS('http://www.w3.org/2000/xmlns/', 'xmlns:saml')
1149 } else if (strpos($encryptedAssertion->tagName, 'saml:') !== false) {
1150 $ns = 'xmlns:saml';
/plugin/authsaml/
H A Daction.php35 protected $saml; variable in action_plugin_authsaml
46 $this->saml = new saml_handler($this->conf);
60 $this->saml->get_ssp_instance();
65 $this->saml->ssp->requireAuth();
68 if ($this->saml->ssp->isAuthenticated()) {
70 $username = $this->saml->getUsername();
84 $this->saml->update_user($username);
86 $this->saml->login($username);
90 if ($this->saml->ssp->isAuthenticated()) {
91 $this->saml->slo();
[all …]
H A Dplugin.info.txt7 url https://github.com/pitbulk/dokuwiki-saml
H A Dauth.php27 protected $saml; variable in auth_plugin_authsaml
46 $this->saml = new saml_handler($this->conf);
58 return $this->saml->getUserData($user);
63 return $this->saml->checkPass($user);
73 $this->saml->get_ssp_instance();
75 if ($this->saml->ssp->isAuthenticated()) {
76 $username = $this->saml->getUsername();
77 $this->saml->login($username);