add bit length to pgp data
parent
9f3da82454
commit
54586ad760
|
@ -117,6 +117,7 @@ export default class Keys extends Route {
|
||||||
<p><strong>Comment:</strong> ${pgp.data.comment}</p>
|
<p><strong>Comment:</strong> ${pgp.data.comment}</p>
|
||||||
|
|
||||||
<p><strong>Public Key Algorithm:</strong> ${algo}</p>
|
<p><strong>Public Key Algorithm:</strong> ${algo}</p>
|
||||||
|
<p><strong>Key Bit Length:</strong>
|
||||||
<p><strong>Key ID:</strong> ${pgp.data.keyID}</p>
|
<p><strong>Key ID:</strong> ${pgp.data.keyID}</p>
|
||||||
<p><strong>Fingerprint:</strong> ${pgp.data.fingerprint}</p>
|
<p><strong>Fingerprint:</strong> ${pgp.data.fingerprint}</p>
|
||||||
<br><br><br>
|
<br><br><br>
|
||||||
|
|
|
@ -22,7 +22,8 @@ export interface PGPKey {
|
||||||
creationTime: string;
|
creationTime: string;
|
||||||
publicKeyAlgorithm: PublicKeyAlgorithm;
|
publicKeyAlgorithm: PublicKeyAlgorithm;
|
||||||
fingerprint: string;
|
fingerprint: string;
|
||||||
keyID: number;
|
keyID: string;
|
||||||
|
bitLength: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export default class PGP extends Command {
|
export default class PGP extends Command {
|
||||||
|
|
Loading…
Reference in New Issue