add bit length to pgp data

master
Matthew 2021-07-04 19:03:21 -04:00
parent 9f3da82454
commit 54586ad760
No known key found for this signature in database
GPG Key ID: 210AF32ADE3B5C4B
2 changed files with 3 additions and 1 deletions

View File

@ -117,6 +117,7 @@ export default class Keys extends Route {
<p><strong>Comment:</strong> ${pgp.data.comment}</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>Fingerprint:</strong> ${pgp.data.fingerprint}</p>
<br><br><br>

View File

@ -22,7 +22,8 @@ export interface PGPKey {
creationTime: string;
publicKeyAlgorithm: PublicKeyAlgorithm;
fingerprint: string;
keyID: number;
keyID: string;
bitLength: string;
}
export default class PGP extends Command {