diff --git a/src/api/comm.libraryofcode.org/routes/keys.ts b/src/api/comm.libraryofcode.org/routes/keys.ts index b68f9f9..a2da28b 100644 --- a/src/api/comm.libraryofcode.org/routes/keys.ts +++ b/src/api/comm.libraryofcode.org/routes/keys.ts @@ -117,6 +117,7 @@ export default class Keys extends Route {

Comment: ${pgp.data.comment}

Public Key Algorithm: ${algo}

+

Key Bit Length:

Key ID: ${pgp.data.keyID}

Fingerprint: ${pgp.data.fingerprint}




diff --git a/src/commands/pgp.ts b/src/commands/pgp.ts index 9db1b37..3d1a4d5 100644 --- a/src/commands/pgp.ts +++ b/src/commands/pgp.ts @@ -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 {