/[winpt]/trunk/Include/wptGPG.h
ViewVC logotype

Diff of /trunk/Include/wptGPG.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 39 by twoaday, Fri Oct 28 06:37:35 2005 UTC revision 273 by twoaday, Fri Dec 8 10:22:17 2006 UTC
# Line 1  Line 1 
1  /* wptGPG.h - GnuPG interface  /* wptGPG.h - GnuPG interface
2   *      Copyright (C) 2000-2005 Timo Schulz   *      Copyright (C) 2000-2006 Timo Schulz
3   *   *
4   * This file is part of WinPT.   * This file is part of WinPT.
5   *   *
# Line 21  Line 21 
21  #ifndef WPT_GPG_H  #ifndef WPT_GPG_H
22  #define WPT_GPG_H  #define WPT_GPG_H
23    
24  #include "w32gpgme.h"  #include <gpgme.h>
25  #include "wptKeyCache.h"  #include "wptKeyCache.h"
26  #include "wptNLS.h"  #include "wptNLS.h"
27    
28    
29  #define NO_STRICT 0  #define NO_STRICT 0
30    
31  #define key_is_useable(key) (!(key)->revoked && !(key)->expired && !(key)->disabled)  /* Macro to indicate if a key is useable or not. */
32    #define key_is_useable(key) (!(key)->revoked && \
33                                 !(key)->expired && \
34                                 !(key)->disabled)
35    
36  enum setup_t {  enum setup_t {
37      SETUP_KEYGEN    = 1,      SETUP_KEYGEN    = 1,
38      SETUP_IMPORT    = 2,      SETUP_IMPORT    = 2,
39      SETUP_EXISTING  = 3      SETUP_EXISTING  = 3,
40        SETUP_CARDGEN   = 4
41  };  };
42    
43  enum gpg_cmd_t {  enum gpg_cmd_t {
# Line 46  enum keycache_t { Line 50  enum keycache_t {
50      KEYCACHE_PUB = 1      KEYCACHE_PUB = 1
51  };  };
52    
 enum entry_t {  
     ENTRY_OPAQUE = 1,  
     ENTRY_SINGLE = 2,  
     ENTRY_MULTI  = 3,  
     ENTRY_GROUP  = 4,  
 };  
53    
54  struct gpg_card_s;  struct gpg_card_s;
55  typedef struct gpg_card_s * gpg_card_t;  typedef struct gpg_card_s *gpg_card_t;
   
 /* GPG file association context. */  
 struct gpg_filetype {      
     const char *descr;  
     const char *ext;  
     int nicon;  
 };  
56    
57  /* Keycache refresh context. */  /* Keycache refresh context. */
58  struct refresh_cache_s {  struct refresh_cache_s {
59      int kr_reload;      int kring_update; /* update the keyring cache. */
60      int kr_update;      int sig_update;   /* update the signature cache. */
     int tr_update;  
61  };  };
62    
 struct gpg_option_s {  
     struct gpg_option_s * next;  
     char * name;  
     char * val;  
     unsigned int used:1;  
     int type;    
 };  
 typedef struct gpg_option_s * gpg_option_t;  
   
 struct gpg_member_s {  
     struct gpg_member_s * next;  
     char * name;  
     unsigned int used:1;    
 };  
 typedef struct gpg_member_s * gpg_member_t;  
   
 struct gpg_group_s {  
     struct gpg_group_s * next;  
     struct gpg_member_s * list;  
     char * name;  
     unsigned int used:1;    
 };  
 typedef struct gpg_group_s * gpg_group_t;  
   
 struct gpg_optfile_s {  
     struct gpg_option_s * list;  
     struct gpg_group_s * grp;  
 };  
 typedef struct gpg_optfile_s * gpg_optfile_t;  
   
 static gpg_filetype gpg_filetypes[] = {  
     {"GPG Detached Signature", ".sig", 1},  
     {"GPG Encrypted Data",     ".gpg", 2},  
     {"GPG Armored Data",       ".asc", 2},  
     {0}  
 };  
63    
64    /* Structure for the passphrase callback. */
65  struct passphrase_cb_s {  struct passphrase_cb_s {
66      int gpg_cmd;        /* sign or decrypt. */      int gpg_cmd;        /* sign or decrypt. */
67      int pwd_init;       /* 1 = passphrase request via dialog. */      int pwd_init;       /* 1 = passphrase request via dialog. */
# Line 128  struct passphrase_cb_s { Line 83  struct passphrase_cb_s {
83  };  };
84    
85    
 static const char * gpg_sigstat[] = {  
     _("Error during verification process."),  
     _("The signature is good."),  
     _("The signature is BAD!"),  
     _("The signature could not be checked due to a missing key."),  
     _("No valid OpenPGP signature."),  
     _("Signature Error"),  
     _("Good Signature (Expired Key)"),  
     _("Good Signature (Revoked Key)"),  
     NULL  
 };  
   
 int sigsum_to_index (gpgme_sigsum_t sum);  
 #define SIGSTAT_MASK 8  
 #define get_gpg_sigstat(sum) gpg_sigstat[sigsum_to_index ((sum)) % SIGSTAT_MASK]  
   
86  /* This variable is 1 if IDEA is available. */  /* This variable is 1 if IDEA is available. */
87  extern int idea_available;  extern int idea_available;
88    
89  /*-- wptGPG.cpp --*/  /*-- wptGPG.cpp --*/
90  char* get_gnupg_default_key( void );  char* get_gnupg_default_key (void);
91  int set_gnupg_default_key( const char *key );  int set_gnupg_default_key (const char *key);
92  char* get_gnupg_config (void);  char* get_gnupg_config (void);
 char* get_gnupg_keyring_from_options( const char *fname, int pub );  
93  int check_gnupg_config (const char *fname, int *secrings, int *pubrings);  int check_gnupg_config (const char *fname, int *secrings, int *pubrings);
94  char* get_gnupg_path( void );  char* get_gnupg_path (void);
95  int check_gnupg_prog( void );  int check_gnupg_prog (void);
96  int gnupg_access_files (void);  int gnupg_access_files (void);
97  char* get_gnupg_prog( void );  char* get_gnupg_prog (void);
98  char* get_gnupg_keyring (int pub, int strict);  char* get_gnupg_keyring (int pub, int strict);
99  char* get_gnupg_cfgfile (void);  char* get_gnupg_cfgfile (void);
100  int set_gnupg_options( const char *buf, size_t buflen );  int set_gnupg_options( const char *buf, size_t buflen );
101  int gnupg_load_config (void);  int gnupg_load_config (void);
102    char* multi_gnupg_path (int strict);
103    
104  int check_gnupg_options (const char *buf);  int check_gnupg_options (const char *buf, int showerr);
105  void init_gnupg_table (void);  void init_gnupg_table (void);
106  void free_gnupg_table (void);  void free_gnupg_table (void);
107  int keyring_check_last_access (void);  int keyring_check_last_access (void);
# Line 171  int gpg_check_permissions (int showmsg); Line 110  int gpg_check_permissions (int showmsg);
110  int gnupg_check_homedir (void);  int gnupg_check_homedir (void);
111  int gnupg_access_keyring (int _pub);  int gnupg_access_keyring (int _pub);
112  void gnupg_backup_options ();  void gnupg_backup_options ();
113  void gnupg_backup_keyrings (void);  void gnupg_backup_keyrings (int auto_backup, int backup_mode,
114  void gnupg_display_error (void);                              int include_secr);
115  int gnupg_copy_keyrings (void);  int gnupg_copy_keyrings (void);
116  int check_gnupg_engine (int *r_major, int *r_minor, int *r_patch);  int check_gnupg_engine (const char *need_gpg_ver,
117                            int *r_major, int *r_minor, int *r_patch);
118    
119  /*-- wptGPGME.cpp --*/  /*-- wptGPGME.cpp --*/
120  const char * get_signature_status( gpgme_sigsum_t sigstat );  const char * get_signature_status( gpgme_sigsum_t sigstat );
 void keycache_reload( HWND dlg );  
121    
122  int get_pubkey (const char *keyid, gpgme_key_t *ret_key);  gpgme_error_t get_pubkey (const char *keyid, gpgme_key_t *ret_key);
123  int winpt_get_pubkey (const char *keyid, struct winpt_key_s *k);  gpgme_error_t winpt_get_pubkey (const char *keyid, struct winpt_key_s *k);
124  int get_seckey (const char *keyid, gpgme_key_t *ret_skey);  void          winpt_release_pubkey (winpt_key_s *k);
125  int winpt_get_seckey (const char *keyid, struct winpt_key_s *k);  gpgme_error_t get_seckey (const char *keyid, gpgme_key_t *ret_skey);
126    gpgme_error_t winpt_get_seckey (const char *keyid, struct winpt_key_s *k);
127    
 void keycache_reload( HWND dlg );  
128  void keycache_release (int cleanup);  void keycache_release (int cleanup);
129  gpgme_error_t keycache_update (int is_sec, const char *keyid);  gpgme_error_t keycache_update (int is_sec, const char *keyid);
130  gpgme_error_t keycache_init( const char *pubring, const char * secring );  gpgme_error_t keycache_init (const char *pubring, const char * secring);
131  void keycache_set_reload( int yes );  gpg_keycache_t keycache_get_ctx (int _pub);
132  int keycache_get_reload( void );  
133  gpg_keycache_t keycache_get_ctx( int _pub );  gpgme_error_t gpg_clip_sym_encrypt (void);
134    const char *get_gpg_sigstat (gpgme_sigsum_t sum);
135    int check_ultimate_trusted_key (void);
136    bool secret_key_available (void);
137    
138    /*-- wptGPGParser.cpp --*/
139    enum entry_t {
140        ENTRY_OPAQUE = 1,
141        ENTRY_SINGLE = 2,
142        ENTRY_MULTI  = 3,
143        ENTRY_GROUP  = 4,
144    };
145    
146  int count_insecure_elgkeys (void);  struct conf_option_s {
147        struct conf_option_s *next;
148        char *name;
149        char *val;
150        unsigned int used:1;
151        int type;  
152    };
153    typedef struct conf_option_s *conf_option_t;
154    
155  int gpg_encrypt_symmetric (void);  struct conf_member_s {
156        struct conf_member_s * next;
157        char *name;
158        unsigned int used:1;  
159    };
160    typedef struct conf_member_s *conf_member_t;
161    
162    struct conf_group_s {
163        struct conf_group_s *next;
164        struct conf_member_s *list;
165        char *name;
166        unsigned int used:1;  
167    };
168    typedef struct conf_group_s *conf_group_t;
169    
170  /*-- wptGPGParser.cpp --*/  struct conf_file_s {
171  /* find */      conf_option_t list;
172  gpg_group_t find_group( gpg_optfile_t opt, const char *str );      conf_group_t grp;
173  gpg_option_t find_option( gpg_optfile_t opt, const char *str );  };
174  gpg_member_t find_member( gpg_optfile_t opt, const char *grp, const char *str );  typedef struct conf_file_s *config_file_t;
175  /* delete */  
176  int delete_group( gpg_optfile_t opt, const char *str );  /* find/delete/add */
177  int delete_member( gpg_optfile_t opt, const char *grp, const char *str );  conf_group_t conf_find_group (config_file_t opt, const char *str);
178  int delete_option( gpg_optfile_t opt, const char *str );  conf_option_t conf_find_option (config_file_t opt, const char *str);
179  /* add */  conf_member_t conf_find_member (config_file_t opt,
180  int modify_entry( gpg_optfile_t opt, int type, const char *name, const char *val );                                  const char *grp, const char *str);
181  int add_entry( gpg_optfile_t opt, int type, const char *name, const char *val );  int conf_delete_group (config_file_t opt, const char *str);
182  int add_member( gpg_optfile_t opt, const char *grp, const char *str );  int conf_delete_member (config_file_t opt, const char *grp, const char *str);
183  int add_group( gpg_optfile_t opt, const char *str );  int conf_delete_option (config_file_t opt, const char *str);
184    int conf_modify_entry (config_file_t opt, int type, const char *name, const char *val);
185    int conf_add_entry (config_file_t opt, int type, const char *name, const char *val);
186    int conf_add_entry_int (config_file_t opt, int type, const char *name, int val);
187    int conf_add_member (config_file_t opt, const char *grp, const char *str);
188    int conf_add_group (config_file_t opt, const char *str);
189  /* high-level */  /* high-level */
190  int parse_gpg_options( const char *file, gpg_optfile_t *r_opt );  void new_config (config_file_t *r_opt);
191  int commit_gpg_options( const char *file, gpg_optfile_t opt );  int parse_config (const char *file, config_file_t *r_opt);
192  void release_gpg_options( gpg_optfile_t opt );  int commit_config (const char *file, config_file_t opt);
193  /* memory */  void release_config (config_file_t opt);
194  void release_group( gpg_group_t grp );  void release_group (conf_group_t grp);
195    
196  /*-- wptPassphraseCB.cpp --*/  /*-- wptPassphraseCB.cpp --*/
197  enum passdlg_t {  enum passdlg_t {
198      PASSDLG_REPEAT = 0,      PASSDLG_REPEAT  = 0, /* indicate the dialig is in the 'repeat passwd' state. */
199      PASSDLG_INIT = 1,        PASSDLG_INIT    = 1,
200      PASSDLG_STRICT = 2      PASSDLG_STRICT  = 2,
201        PASSDLG_NOTEMPTY= 4,
202        PASSDLG_WARN_UTF8=8,
203  };  };
204    
205  void set_gpg_passphrase_cb (passphrase_cb_s *cb, gpgme_ctx_t ctx,  void set_gpg_passphrase_cb (passphrase_cb_s *cb, gpgme_ctx_t ctx,
206                              int cmd, HWND hwnd, const char *title);                              int cmd, HWND hwnd, const char *title);
207  void release_gpg_passphrase_cb (passphrase_cb_s *cb);  void release_gpg_passphrase_cb (passphrase_cb_s *cb);
208    void release_gpg_recipients (gpgme_recipient_t *recipients);
209    
210  char * request_passphrase (const char *title, int flags, int *ret_cancel);  char *request_passphrase (const char *title, int flags, int *ret_cancel);
211  char * request_passphrase2 (const char *title, int flags, int *ret_cancel);  char *request_passphrase2 (const char *title, int flags, int *ret_cancel);
212    char *request_key_passphrase (gpgme_key_t key, const char *title,
213                                  int *ret_cancel);
214  const char * passphrase_cb (void *opaque, const char * desc, void *r_hd);  const char * passphrase_cb (void *opaque, const char * desc, void *r_hd);
215  char * get_key_userid (const char *keyid);  char * get_key_userid (const char *keyid);
216  int check_passwd_quality (const char *pass, int strict);  int check_passwd_quality (const char *pass, int strict);
217    
218    /*-- wptClipboard.cpp --*/
219    gpgme_error_t gpg_clip_istext_avail (int *r_val);
220    gpgme_error_t gpg_clip_is_secured (int *r_type, int *r_val);
221    gpgme_error_t gpg_clip_get_pgptype (int *r_type);
222    gpgme_error_t gpg_clip_parse_pgpid (const char *data, int *r_type);
223    
224    /* wptGPGMEData.cpp --*/
225    gpgme_error_t gpg_data_new_from_clipboard (gpgme_data_t *r_dh, int wraplen);
226    void         gpg_data_release_and_set_clipboard (gpgme_data_t dh, int chg_ver);
227    size_t       gpg_data_readline (gpgme_data_t dh, char *line, size_t nbytes);
228    
229    gpgme_error_t gpg_data_release_and_set_file (gpgme_data_t dh, const char *fname);
230    gpgme_error_t  gpg_data_mail_quote (gpgme_data_t *r_dh);
231    gpgme_error_t  gpg_data_extract_plaintext (gpgme_data_t sig, gpgme_data_t *r_plain);
232    void          gpg_data_putc (gpgme_data_t hd, int c);
233    
234  /*-- wptGPGUtil.cpp --*/  /*-- wptGPGUtil.cpp --*/
235  gpgme_error_t gpg_rebuild_cache (char **r_inf);  gpgme_error_t gpg_rebuild_cache (char **r_inf);
236  gpgme_error_t gpg_get_version (char **r_inf);  gpgme_error_t gpg_get_version (char **r_inf);
237  void          gpg_set_debug_mode (int val);  void          gpg_set_debug_mode (int val);
238  gpgme_error_t gpg_export_seckey (const char *keyid, const char *outfile);  gpgme_error_t gpg_export_seckey (const char *keyid, const char *outfile);
239  gpgme_error_t gpg_manage_ownertrust (char **data, int do_export);  gpgme_error_t gpg_manage_ownertrust (char **data, int do_export);
240    gpgme_error_t gpg_get_photoid_data (const char *keyid, char **r_status_data,
241  char*  generate_revoc_input (int code, const char *cmt, const char *pass);                                      unsigned char **r_data,
242  gpgme_error_t gpg_revoke_key (const char *inp_data,                                      unsigned long *ndata);
243                                const char *keyid,  gpgme_error_t gpg_revoke_cert (int desig_revoke, const char *inp_data,
244                                char **r_revcert);                                 const char *keyid, char **r_revcert);
245  gpgme_error_t gpg_decode_c_string (const char *src, char **destp, size_t len);  gpgme_error_t gpg_decode_c_string (const char *src, char **destp, size_t len);
246  gpgme_error_t gpg_import_key_list (const char *fname, char **r_out);  gpgme_error_t gpg_import_key_list (const char *fname, char **r_out);
247    gpgme_error_t gpg_extract_keys (const char *keyfile, const char **keys, DWORD nkeys,
248                                    char **new_keyfile);
249  gpgme_error_t get_uat_validity (const char *keyid, gpgme_validity_t *r_valid);  gpgme_error_t get_uat_validity (const char *keyid, gpgme_validity_t *r_valid);
250    gpgme_error_t gpg_get_recipients (const char *file, gpgme_recipient_t *r_list);
251    gpgme_error_t gpg_find_key_subpacket (const char *key, int subpktid,
252                                          char **value);
253    int gpg_check_return_code (const char *args);
254    
255  #endif /* WPT_GPG_H */  #endif /* WPT_GPG_H */

Legend:
Removed from v.39  
changed lines
  Added in v.273

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26