示例#1
0
文件: Debug.php 项目: rnaga/php-tls
 public function getCertificates()
 {
     $crtDers = $this->core->getCrtDers();
     if (!count($crtDers)) {
         return '';
     }
     $output = [];
     foreach ($crtDers as $der) {
         $output[] = X509::crtDerToPem($der);
     }
     return implode("\n", $output) . "\n";
 }