![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/vendor/litesaml/lightsaml/src/Credential/ |
<?php namespace LightSaml\Credential; use LightSaml\Error\LightSamlException; use LightSaml\Error\LightSamlSecurityException; use LightSaml\SamlConstants; use RobRichards\XMLSecLibs\XMLSecurityKey; class X509Certificate { private static $typeMap = [ 'RSA-SHA1' => XMLSecurityKey::RSA_SHA1, 'RSA-SHA256' => XMLSecurityKey::RSA_SHA256, 'RSA-SHA384' => XMLSecurityKey::RSA_SHA384, 'RSA-SHA512' => XMLSecurityKey::RSA_SHA512, ]; /** @var string */ protected $data; /** @var array|null */ protected $info; /** @var string */ private $signatureAlgorithm; /** * @param string $filename * * @return X509Certificate */ public static function fromFile($filename) { $result = new self(); $result->loadFromFile($filename); return $result; } /** * @param string $data * * @return X509Certificate */ public function setData($data) { $this->data = preg_replace('/\s+/', '', $data); $this->parse(); return $this; } /** * @return string */ public function getData() { return $this->data; } /** * @param string $data * * @return X509Certificate * * @throws \InvalidArgumentException */ public function loadPem($data) { $pattern = '/^-----BEGIN CERTIFICATE-----([^-]*)^-----END CERTIFICATE-----/m'; if (false == preg_match($pattern, $data, $matches)) { throw new \InvalidArgumentException('Invalid PEM encoded certificate'); } $this->data = preg_replace('/\s+/', '', $matches[1]); $this->parse(); return $this; } /** * @param string $filename * * @return X509Certificate * * @throws \InvalidArgumentException */ public function loadFromFile($filename) { if (!is_file($filename)) { throw new \InvalidArgumentException(sprintf("File not found '%s'", $filename)); } $content = file_get_contents($filename); $this->loadPem($content); return $this; } /** * @return string */ public function toPem() { $result = "-----BEGIN CERTIFICATE-----\n" . chunk_split($this->getData(), 64, "\n") . "-----END CERTIFICATE-----\n"; return $result; } public function parse() { if (false == $this->data) { throw new LightSamlException('Certificate data not set'); } $res = openssl_x509_read($this->toPem()); $this->info = openssl_x509_parse($res); $this->signatureAlgorithm = null; $signatureType = isset($this->info['signatureTypeSN']) ? $this->info['signatureTypeSN'] : ''; if ($signatureType && isset(self::$typeMap[$signatureType])) { $this->signatureAlgorithm = self::$typeMap[$signatureType]; } else { openssl_x509_export($res, $out, false); if (preg_match('/^\s+Signature Algorithm:\s*(.*)\s*$/m', $out, $match)) { switch ($match[1]) { case 'sha1WithRSAEncryption': case 'sha1WithRSA': $this->signatureAlgorithm = XMLSecurityKey::RSA_SHA1; break; case 'sha256WithRSAEncryption': case 'sha256WithRSA': $this->signatureAlgorithm = XMLSecurityKey::RSA_SHA256; break; case 'sha384WithRSAEncryption': case 'sha384WithRSA': $this->signatureAlgorithm = XMLSecurityKey::RSA_SHA384; break; case 'sha512WithRSAEncryption': case 'sha512WithRSA': $this->signatureAlgorithm = XMLSecurityKey::RSA_SHA512; break; case 'md5WithRSAEncryption': case 'md5WithRSA': $this->signatureAlgorithm = SamlConstants::XMLDSIG_DIGEST_MD5; break; default: } } } if (!$this->signatureAlgorithm) { throw new LightSamlSecurityException('Unrecognized signature algorithm'); } } /** * @return string * * @throws \LightSaml\Error\LightSamlException */ public function getName() { if (false == $this->info) { throw new LightSamlException('Certificate data not set'); } return $this->info['name']; } /** * @return string * * @throws \LightSaml\Error\LightSamlException */ public function getSubject() { if (false == $this->info) { throw new LightSamlException('Certificate data not set'); } return $this->info['subject']; } /** * @return array * * @throws \LightSaml\Error\LightSamlException */ public function getIssuer() { if (false == $this->info) { throw new LightSamlException('Certificate data not set'); } return $this->info['issuer']; } /** * @return int * * @throws \LightSaml\Error\LightSamlException */ public function getValidFromTimestamp() { if (false == $this->info) { throw new LightSamlException('Certificate data not set'); } return $this->info['validFrom_time_t']; } /** * @return int * * @throws \LightSaml\Error\LightSamlException */ public function getValidToTimestamp() { if (false == $this->info) { throw new LightSamlException('Certificate data not set'); } return $this->info['validTo_time_t']; } /** * @return array * * @throws \LightSaml\Error\LightSamlException */ public function getInfo() { if (false == $this->info) { throw new LightSamlException('Certificate data not set'); } return $this->info; } /** * @throws \LightSaml\Error\LightSamlException * * @return string */ public function getFingerprint() { if (false == $this->data) { throw new LightSamlException('Certificate data not set'); } return XMLSecurityKey::getRawThumbprint($this->toPem()); } public function getSignatureAlgorithm() { if (false == $this->data) { throw new LightSamlException('Certificate data not set'); } return $this->signatureAlgorithm; } }