当前位置: 首页>>代码示例>>PHP>>正文


PHP SAML2_Utils::parseNameId方法代码示例

本文整理汇总了PHP中SAML2_Utils::parseNameId方法的典型用法代码示例。如果您正苦于以下问题:PHP SAML2_Utils::parseNameId方法的具体用法?PHP SAML2_Utils::parseNameId怎么用?PHP SAML2_Utils::parseNameId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在SAML2_Utils的用法示例。


在下文中一共展示了SAML2_Utils::parseNameId方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 /**
  * Constructor for SAML 2 logout request messages.
  *
  * @param DOMElement|NULL $xml  The input message.
  */
 public function __construct(DOMElement $xml = NULL)
 {
     parent::__construct('LogoutRequest', $xml);
     if ($xml === NULL) {
         return;
     }
     $nameId = SAML2_Utils::xpQuery($xml, './saml_assertion:NameID');
     if (empty($nameId)) {
         throw new Exception('Missing NameID in logout request.');
     }
     $this->nameId = SAML2_Utils::parseNameId($nameId[0]);
     $sessionIndex = SAML2_Utils::xpQuery($xml, './saml_protocol:SessionIndex');
     if (!empty($sessionIndex)) {
         $this->sessionIndex = trim($sessionIndex[0]->textContent);
     }
 }
开发者ID:filonuse,项目名称:fedlab,代码行数:21,代码来源:LogoutRequest.php

示例2: parseSubject

 /**
  * Parse subject in query.
  *
  * @param DOMElement $xml The SubjectQuery XML element.
  * @throws Exception
  */
 private function parseSubject(DOMElement $xml)
 {
     $subject = SAML2_Utils::xpQuery($xml, './saml_assertion:Subject');
     if (empty($subject)) {
         /* No Subject node. */
         throw new Exception('Missing subject in subject query.');
     } elseif (count($subject) > 1) {
         throw new Exception('More than one <saml:Subject> in <saml:Assertion>.');
     }
     $subject = $subject[0];
     $nameId = SAML2_Utils::xpQuery($subject, './saml_assertion:NameID');
     if (empty($nameId)) {
         throw new Exception('Missing <saml:NameID> in <saml:Subject>.');
     } elseif (count($nameId) > 1) {
         throw new Exception('More than one <saml:NameID> in <saml:Subject>.');
     }
     $nameId = $nameId[0];
     $this->nameId = SAML2_Utils::parseNameId($nameId);
 }
开发者ID:Shalmezad,项目名称:saml2,代码行数:25,代码来源:SubjectQuery.php

示例3: decryptNameId

 /**
  * Decrypt the NameId of the subject in the assertion.
  *
  * @param XMLSecurityKey $key  The decryption key.
  * @param array $blacklist  Blacklisted decryption algorithms.
  */
 public function decryptNameId(XMLSecurityKey $key, array $blacklist = array())
 {
     if ($this->encryptedNameId === NULL) {
         /* No NameID to decrypt. */
         return;
     }
     $nameId = SAML2_Utils::decryptElement($this->encryptedNameId, $key, $blacklist);
     SimpleSAML_Utilities::debugMessage($nameId, 'decrypt');
     $this->nameId = SAML2_Utils::parseNameId($nameId);
     $this->encryptedNameId = NULL;
 }
开发者ID:emma5021,项目名称:toba,代码行数:17,代码来源:Assertion.php

示例4: decryptNameId

 /**
  * Decrypt the NameID in the LogoutRequest.
  *
  * @param XMLSecurityKey $key  The decryption key.
  */
 public function decryptNameId(XMLSecurityKey $key)
 {
     if ($this->encryptedNameId === NULL) {
         /* No NameID to decrypt. */
         return;
     }
     $nameId = SAML2_Utils::decryptElement($this->encryptedNameId, $key);
     $this->nameId = SAML2_Utils::parseNameId($nameId);
     $this->encryptedNameId = NULL;
 }
开发者ID:filonuse,项目名称:fedlab,代码行数:15,代码来源:LogoutRequest.php


注:本文中的SAML2_Utils::parseNameId方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。