Subversion Repositories oidplus

Rev

Rev 801 | Rev 1005 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 801 Rev 830
Line 177... Line 177...
177
        echo htmlentities($sysid_oid);
177
        echo htmlentities($sysid_oid);
178
        echo '</b>';
178
        echo '</b>';
179
 
179
 
180
        echo '<p><u>'._L('Your public key is:').'</u></p>';
180
        echo '<p><u>'._L('Your public key is:').'</u></p>';
181
 
181
 
182
        $val = OIDplus::config()->getValue('oidplus_public_key');
182
        $val = OIDplus::getSystemPublicKey();
183
        if ($val) {
183
        if ($val) {
184
                echo '<pre>'.htmlentities($val).'</pre>';
184
                echo '<pre>'.htmlentities($val).'</pre>';
185
        } else {
185
        } else {
186
                echo '<p>'._L('Private/Public key creation failed').'</p>';
186
                echo '<p>'._L('Private/Public key creation failed').'</p>';
187
        }
187
        }