Searched refs:x509cert (Results 1 – 8 of 8) sorted by relevance
/plugin/adfs/phpsaml/lib/Saml2/ |
D | Utils.php | 219 $x509cert = str_replace(array("\x0D", "\r", "\n"), "", $cert); 220 if (!empty($x509cert)) { 221 $x509cert = str_replace('-----BEGIN CERTIFICATE-----', "", $x509cert); 222 $x509cert = str_replace('-----END CERTIFICATE-----', "", $x509cert); 223 $x509cert = str_replace(' ', '', $x509cert); 226 …$x509cert = "-----BEGIN CERTIFICATE-----\n".chunk_split($x509cert, 64, "\n")."-----END CERTIFICATE… 230 return $x509cert; 980 * @param string $x509cert x509 cert 985 public static function calculateX509Fingerprint($x509cert, $alg = 'sha1') argument 989 $arCert = explode("\n", $x509cert); [all …]
|
/plugin/saml/phpsaml/lib/Saml2/ |
D | Utils.php | 219 $x509cert = str_replace(array("\x0D", "\r", "\n"), "", $cert); 220 if (!empty($x509cert)) { 221 $x509cert = str_replace('-----BEGIN CERTIFICATE-----', "", $x509cert); 222 $x509cert = str_replace('-----END CERTIFICATE-----', "", $x509cert); 223 $x509cert = str_replace(' ', '', $x509cert); 226 …$x509cert = "-----BEGIN CERTIFICATE-----\n".chunk_split($x509cert, 64, "\n")."-----END CERTIFICATE… 230 return $x509cert; 980 * @param string $x509cert x509 cert 985 public static function calculateX509Fingerprint($x509cert, $alg = 'sha1') argument 989 $arCert = explode("\n", $x509cert); [all …]
|
/plugin/saml/phpsaml/extlib/xmlseclibs/ |
D | xmlseclibs.php | 1709 $x509cert = $x509certNodes->item(0)->textContent; 1710 $x509cert = str_replace(array("\r", "\n", " "), "", $x509cert); 1711 …$x509cert = "-----BEGIN CERTIFICATE-----\n".chunk_split($x509cert, 64, "\n")."-----END CERTIFICATE… 1712 $objBaseKey->loadKey($x509cert, false, true);
|
/plugin/adfs/phpsaml/extlib/xmlseclibs/ |
D | xmlseclibs.php | 1709 $x509cert = $x509certNodes->item(0)->textContent; 1710 $x509cert = str_replace(array("\r", "\n", " "), "", $x509cert); 1711 …$x509cert = "-----BEGIN CERTIFICATE-----\n".chunk_split($x509cert, 64, "\n")."-----END CERTIFICATE… 1712 $objBaseKey->loadKey($x509cert, false, true);
|
/plugin/adfs/phpsaml/ |
D | CHANGELOG | 22 * Support 'x509cert' and 'privateKey' on signMetadata security settings 72 * [#206](https://github.com/onelogin/php-saml/pull/206)Be able to register future SP x509cert on th… 73 …in/php-saml/pull/206) Be able to register more than 1 Identity Provider x509cert, linked with an s…
|
D | README.md | 202 Or also we can provide those data in the setting file at the `$settings['sp']['x509cert']` 360 // Usually x509cert and privateKey of the SP are provided by files placed at 362 'x509cert' => '', 367 * If you plan to update the SP x509cert and privateKey 368 * you can define here the new x509cert and it will be 402 'x509cert' => '', 404 * Instead of use the whole x509cert you can use a fingerprint in order to 415 * will need to provide the whole x509cert. 424 * (when used, 'x509cert' and 'certFingerprint' values are 481 'x509cert' => '', [all …]
|
/plugin/saml/phpsaml/ |
D | CHANGELOG | 22 * Support 'x509cert' and 'privateKey' on signMetadata security settings 72 * [#206](https://github.com/onelogin/php-saml/pull/206)Be able to register future SP x509cert on th… 73 …in/php-saml/pull/206) Be able to register more than 1 Identity Provider x509cert, linked with an s…
|
D | README.md | 202 Or also we can provide those data in the setting file at the `$settings['sp']['x509cert']` 360 // Usually x509cert and privateKey of the SP are provided by files placed at 362 'x509cert' => '', 367 * If you plan to update the SP x509cert and privateKey 368 * you can define here the new x509cert and it will be 402 'x509cert' => '', 404 * Instead of use the whole x509cert you can use a fingerprint in order to 415 * will need to provide the whole x509cert. 424 * (when used, 'x509cert' and 'certFingerprint' values are 481 'x509cert' => '', [all …]
|