SSL module updates and random class addition

This commit is contained in:
Deon George
2012-05-09 00:59:08 +10:00
parent 01d7f09a68
commit 1d2d589ff5
7 changed files with 131 additions and 23 deletions

View File

@@ -10,8 +10,16 @@
<td>
<table width="100%">
<tr>
<td style="width: 25%;">Service Name</td>
<td style="width: 75%;" class="data"><?php echo $so->display('csr'); ?></td>
<td style="width: 25%;">Subject</td>
<td style="width: 75%;" class="data"><?php echo $so->dn(); ?></td>
</tr>
<tr>
<td>Issuer</td>
<td class="data"><?php echo $so->dnissuer(); ?></td>
</tr>
<tr>
<td>CA</td>
<td class="data"><?php echo $so->ssl_ca->subject(); ?></td>
</tr>
<tr>
<td>Valid From</td>
@@ -33,6 +41,10 @@
<td>Hash</td>
<td class="data"><?php echo $so->hash(); ?></td>
</tr>
<tr>
<td>Algorithm</td>
<td class="data"><?php echo $so->algorithm(); ?></td>
</tr>
<tr>
<td>Certificate</td>
<td class="data"><pre><?php echo $so->cert; ?></pre></td>