diff options
author | Werner Koch <[email protected]> | 2005-01-20 17:21:40 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2005-01-20 17:21:40 +0000 |
commit | b2b2786be1047e921fe50263915a565252a802ed (patch) | |
tree | ed076a7824239cba29acb3e4d3cda91a8a3d9d41 /g10/main.h | |
parent | Minor changes (diff) | |
download | gnupg-b2b2786be1047e921fe50263915a565252a802ed.tar.gz gnupg-b2b2786be1047e921fe50263915a565252a802ed.zip |
* gpgv.c (tty_fprintf): New stub.
* card-util.c (card_status): Create asecret key stub on the fly
and print more information about a card key.
* import.c (pub_to_sec_keyblock, auto_create_card_key_stub): New.
* getkey.c (get_seckeyblock_byfprint): New.
* keylist.c (print_card_key_info): New.
Diffstat (limited to 'g10/main.h')
-rw-r--r-- | g10/main.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/g10/main.h b/g10/main.h index bf8543f0e..a456c96d5 100644 --- a/g10/main.h +++ b/g10/main.h @@ -211,6 +211,11 @@ void import_print_stats (void *hd); int collapse_uids( KBNODE *keyblock ); +int auto_create_card_key_stub ( const char *serialnostr, + const unsigned char *fpr1, + const unsigned char *fpr2, + const unsigned char *fpr3); + /*-- export.c --*/ int parse_export_options(char *str,unsigned int *options,int noisy); int export_pubkeys( STRLIST users, unsigned int options ); @@ -247,6 +252,7 @@ void dump_attribs(const PKT_user_id *uid, void set_attrib_fd(int fd); void print_seckey_info (PKT_secret_key *sk); void print_pubkey_info (FILE *fp, PKT_public_key *pk); +void print_card_key_info (FILE *fp, KBNODE keyblock); /*-- verify.c --*/ void print_file_status( int status, const char *name, int what ); |