mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-02 03:52:49 -05:00
Unix Pageant: first draft of -l key list option.
It doesn't look very pretty at the moment, but it lists the keys and gets the fingerprints right.
This commit is contained in:
@ -120,3 +120,8 @@ enum {
|
||||
int pageant_add_keyfile(Filename *filename, const char *passphrase,
|
||||
char **retstr);
|
||||
void pageant_forget_passphrases(void);
|
||||
typedef void (*pageant_key_enum_fn_t)(void *ctx,
|
||||
const char *fingerprint,
|
||||
const char *comment);
|
||||
int pageant_enum_keys(pageant_key_enum_fn_t callback, void *callback_ctx,
|
||||
char **retstr);
|
||||
|
Reference in New Issue
Block a user