1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-02 03:52:49 -05:00

Unix Pageant: provide public-key extraction options.

I've decided against implementing an option exactly analogous to
'ssh-add -L' (printing the full public key of everything in the
agent). Instead, you can identify a specific key to display in full,
by any of the same means -d lets you use, and then print it in either
of the public key formats we support.
This commit is contained in:
Simon Tatham
2015-05-12 14:48:32 +01:00
parent 8682246d33
commit e533097e15
3 changed files with 38 additions and 4 deletions

View File

@ -127,6 +127,7 @@ struct pageant_pubkey {
* later */
void *blob;
int bloblen;
char *comment;
int ssh_version;
};
struct pageant_pubkey *pageant_pubkey_copy(struct pageant_pubkey *key);