diff options
author | Werner Koch <[email protected]> | 1998-06-29 12:30:57 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 1998-06-29 12:30:57 +0000 |
commit | 77a6af76d04a4762c841627ac95fdc521ca74b72 (patch) | |
tree | beec5dfedffa9c1a25b737911066fe93df4d923f /g10/main.h | |
parent | bug fixes (diff) | |
download | gnupg-77a6af76d04a4762c841627ac95fdc521ca74b72.tar.gz gnupg-77a6af76d04a4762c841627ac95fdc521ca74b72.zip |
textual changes
Diffstat (limited to 'g10/main.h')
-rw-r--r-- | g10/main.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/g10/main.h b/g10/main.h index c50a07147..03150d37f 100644 --- a/g10/main.h +++ b/g10/main.h @@ -32,7 +32,7 @@ typedef struct { int header_okay; - PKC_LIST pkc_list; + PK_LIST pk_list; cipher_filter_context_t cfx; } encrypt_filter_context_t; @@ -61,7 +61,7 @@ int encrypt_filter( void *opaque, int control, /*-- sign.c --*/ -int complete_sig( PKT_signature *sig, PKT_secret_cert *skc, MD_HANDLE md ); +int complete_sig( PKT_signature *sig, PKT_secret_key *sk, MD_HANDLE md ); int sign_file( STRLIST filenames, int detached, STRLIST locusr, int encrypt, STRLIST remusr, const char *outfile ); int clearsign_file( const char *fname, STRLIST locusr, const char *outfile ); @@ -95,9 +95,11 @@ KBNODE make_comment_node( const char *s ); KBNODE make_mpi_comment_node( const char *s, MPI a ); /*-- import.c --*/ -int import_pubkeys( const char *filename ); +int import_keys( const char *filename ); /*-- export.c --*/ int export_pubkeys( STRLIST users ); +int export_seckeys( STRLIST users ); + /* dearmor.c --*/ int dearmor_file( const char *fname ); int enarmor_file( const char *fname ); |