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

Diff of /trunk/Include/wptKeyEdit.h

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

revision 24 by twoaday, Sat Oct 8 10:43:08 2005 UTC revision 170 by twoaday, Mon Jan 30 12:42:57 2006 UTC
# Line 1  Line 1 
1  /* wptKeyEdit.h  /* wptKeyEdit.h
2   *      Copyright (C) 2003, 2004 Timo Schulz   *      Copyright (C) 2003, 2004 Timo Schulz
3   *   *
4   * This file is part of WinPT.   * This file is part of WinPT.
5   *   *
6   * WinPT is free software; you can redistribute it and/or   * WinPT is free software; you can redistribute it and/or
7   * modify it under the terms of the GNU General Public License   * modify it under the terms of the GNU General Public License
8   * as published by the Free Software Foundation; either version 2   * as published by the Free Software Foundation; either version 2
9   * of the License, or (at your option) any later version.   * of the License, or (at your option) any later version.
10   *     *  
11   * WinPT is distributed in the hope that it will be useful,   * WinPT is distributed in the hope that it will be useful,
12   * but WITHOUT ANY WARRANTY; without even the implied warranty of   * but WITHOUT ANY WARRANTY; without even the implied warranty of
13   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14   * General Public License for more details.   * General Public License for more details.
15   *   *
16   * You should have received a copy of the GNU General Public License   * You should have received a copy of the GNU General Public License
17   * along with WinPT; if not, write to the Free Software Foundation,   * along with WinPT; if not, write to the Free Software Foundation,
18   * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA   * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19   */   */
20    
21  #ifndef WPT_KEY_EDIT_H  #ifndef WPT_KEY_EDIT_H
22  #define WPT_KEY_EDIT_H  #define WPT_KEY_EDIT_H
23    
24  /* IDs for all possible gpg edit key commands. */  /* IDs for all possible gpg edit key commands. */
25  enum {  enum gpg_editkey_t {
26      GPG_EDITKEY_SIGN    =  1,      GPG_EDITKEY_SIGN    =  1,
27      GPG_EDITKEY_LSIGN   =  2,      GPG_EDITKEY_LSIGN   =  2,
28      GPG_EDITKEY_NRSIGN  = 19,      GPG_EDITKEY_NRSIGN  = 19,
29      GPG_EDITKEY_NRLSIGN = 22,      GPG_EDITKEY_NRLSIGN = 22,
30      GPG_EDITKEY_TSIGN   = 20,      GPG_EDITKEY_TSIGN   = 20,
31      GPG_EDITKEY_TRUST   =  3,      GPG_EDITKEY_TRUST   =  3,
32      GPG_EDITKEY_ADDUID  =  4,      GPG_EDITKEY_ADDUID  =  4,
33      GPG_EDITKEY_DELUID  =  5,      GPG_EDITKEY_DELUID  =  5,
34      GPG_EDITKEY_DELKEY  =  6,      GPG_EDITKEY_DELKEY  =  6,
35      GPG_EDITKEY_ADDKEY  =  7,      GPG_EDITKEY_ADDKEY  =  7,
36      GPG_EDITKEY_PASSWD  =  8,      GPG_EDITKEY_PASSWD  =  8,
37      GPG_EDITKEY_PRIMARY =  9,      GPG_EDITKEY_PRIMARY =  9,
38      GPG_EDITKEY_EXPIRE  = 10,      GPG_EDITKEY_EXPIRE  = 10,
39      GPG_EDITKEY_REVSIG  = 11,      GPG_EDITKEY_REVSIG  = 11,
40      GPG_EDITKEY_REVKEY  = 12,      GPG_EDITKEY_REVKEY  = 12,
41      GPG_EDITKEY_REVOKE  = 13, /* revoke the whole key */      GPG_EDITKEY_REVOKE  = 13, /* revoke the whole key */
42      GPG_EDITKEY_ADDREV  = 14,      GPG_EDITKEY_ADDREV  = 14,
43      GPG_EDITKEY_ADDPHOTO= 15,      GPG_EDITKEY_ADDPHOTO= 15,
44      GPG_EDITKEY_ENABLE  = 16,      GPG_EDITKEY_ENABLE  = 16,
45      GPG_EDITKEY_DISABLE = 17,      GPG_EDITKEY_DISABLE = 17,
46      GPG_EDITKEY_SETPREF = 18,      GPG_EDITKEY_SETPREF = 18,
47      GPG_EDITKEY_DELSIG  = 21,      GPG_EDITKEY_DELSIG  = 21,
48      GPG_EDITKEY_KEYSERV = 23      GPG_EDITKEY_KEYSERV = 23,
49  };      GPG_EDITKEY_REVUID  = 24,
50        GPG_EDITKEY_CLEAN   = 25
51  /* Reasons for revocations. */  };
52  enum {  
53      GPG_REVOKE_INSECURE   = 1,  /* Reasons for revocations. */
54      GPG_REVOKE_SUPERSEDED = 2,  enum gpg_revoke_t {
55      GPG_REVOKE_NOUSED     = 3      GPG_REVOKE_INSECURE   = 1,
56  };      GPG_REVOKE_SUPERSEDED = 2,
57        GPG_REVOKE_NOUSED     = 3
58    };
59  /* Possible results for the operation. */  
60  enum {  /* Contain information about designated revokers. */
61      GPG_EDITRES_ALREADY_SIGNED = 1  struct gpg_desig_rev_s {
62  };      struct gpg_desig_rev_s *next;
63        gpgme_pubkey_algo_t pubkey_algo;
64  /* Contain information about designated revokers. */      char fpr[41];
65  struct gpg_desig_rev_s {  };
66      struct gpg_desig_rev_s *next;  typedef struct gpg_desig_rev_s *gpg_desig_rev_t;
67      gpgme_pubkey_algo_t pubkey_algo;  
68      char fpr[41];  /* Context to hold all user-ID information. */
69  };  struct gpg_user_id_info_s {
70  typedef struct gpg_desig_rev_s *gpg_desig_rev_t;      struct gpg_user_id_info_s *next;
71        struct {
72  /* Context to hold all user-ID information. */          unsigned int revoked:1;
73  struct gpg_user_id_info_s {          unsigned int invalid:1;
74      struct gpg_user_id_info_s *next;          unsigned int primary:1;
75      struct {          unsigned int mdc:1;
76          unsigned int revoked:1;          unsigned int no_ks_modify:1;
77          unsigned int invalid:1;      } flags;
78          unsigned int primary:1;      int  validity;
79          unsigned int mdc:1;      char *name;
80          unsigned int no_ks_modify:1;      char *email;
81      } flags;      char *prefs;    
82      int  validity;      int  index;
83      char *name;  };
84      char *email;  typedef struct gpg_user_id_info_s *gpg_uid_info_t;
85      char *prefs;      
86      int  index;  /* Class to abstract the gpg edit key interface. */
87  };  class GpgKeyEdit {
88  typedef struct gpg_user_id_info_s *gpg_uid_info_t;  private:
89        gpgme_key_t key;
90  /* Class to abstract the gpg edit key interface. */      gpgme_ctx_t ctx;
91  class GpgKeyEdit {      int resval;
92  private:      int type;
93      gpgme_key_t key;  
94      gpgme_ctx_t ctx;      int sig_index;
95      int resval;      int key_index;
96        int uid_index;
97  public:  
98      int type;  public:
99      int cnt;      int cnt;
100      int cmd_sent;      int cmd_sent;
101      const char *pass;      const char *pass;
102      const char *new_pass;      const char *new_pass;
103      int sig_index;      const char *url;
104      int key_index;      int trust_id;
105      int uid_index;      char *name, *cmt, *email;
106      const char *url;      const char *exp_date; /* XXX */
107      int trust_id;      gpgme_pubkey_algo_t pubkey_algo;
108      char *name, *cmt, *email;      int pubkey_size;
109      const char *exp_date; /* XXX */      int valid; /* XXX */
110      gpgme_pubkey_algo_t pubkey_algo;      int flags;
111      int pubkey_size;      int sig_class;
112      int valid; /* XXX */      int reason;
113      int flags;  
114      int sig_class;  public:
115      int reason;      GpgKeyEdit (gpgme_key_t key);
116        GpgKeyEdit (const char *keyid);
117  public:      ~GpgKeyEdit (void);
118      GpgKeyEdit (gpgme_key_t key);  
119      GpgKeyEdit (const char *keyid);      bool isValid (void);
120      ~GpgKeyEdit (void);      void reset (void);
121        void clear (void);
122      bool isValid (void);  
123      gpgme_key_t getKey (void);      void setPassphrase (const char *pass);
124      void reset (void);      void setKey (gpgme_key_t key);
125        void setKeyID (const char *keyid);
126      void setPassphrase (const char *pass);      void setLocalUser (gpgme_key_t locusr);
127      void setKey (gpgme_key_t key);      void setCallback (gpgme_progress_cb_t cb, void *cb_value);    
128      void setKeyID (const char *keyid);      void setResult (int val);
129      void setLocalUser (gpgme_key_t locusr);      int  getResult (void);
130      void setCallback (gpgme_progress_cb_t cb, void *cb_value);  
131        gpgme_key_t getKey (void);
132      void setResultValue (int val);      int getType (void);
133      int  getResultValue (void);      int getUseridIndex (void);
134        int getKeyIndex (void);
135      gpgme_error_t signKey (int mode, int sig_class, const char *exp_date);      int getSigIndex (void);
136      gpgme_error_t setTrust (gpgme_validity_t trust);  
137      gpgme_error_t addUserid (const char *name, const char *cmt, const char *email);      gpgme_error_t signUserid (int uid_idx, int mode, int sig_class,
138      gpgme_error_t delUserid (int index);                                const char *exp_date);
139      gpgme_error_t delKey (int index);      gpgme_error_t signKey (int mode, int sig_class, const char *exp_date);
140      gpgme_error_t addSubkey (gpgme_pubkey_algo_t pubkey_algo, unsigned int nbits,      gpgme_error_t setTrust (gpgme_validity_t trust);
141                               long valid);      gpgme_error_t addUserid (const char *name, const char *cmt,
142      gpgme_error_t changePassphrase (const char *new_pass, int allow_empty);                               const char *email);
143      gpgme_error_t setPrimaryUserid (int uid_indx);      gpgme_error_t delUserid (int index);
144      gpgme_error_t setKeyExpireDate (int key_index, long exp_timestamp);      gpgme_error_t delKey (int index);
145      gpgme_error_t revokeSignature (int uid_index, int sig_index);      gpgme_error_t addSubkey (gpgme_pubkey_algo_t pubkey_algo,
146      gpgme_error_t revokeSubkey (int key_index, int reason, const char *cmt);                               unsigned int nbits, long valid);
147      gpgme_error_t revokeKey (int reason, const char *cmt);      gpgme_error_t changePassphrase (const char *new_pass, int allow_empty);
148      gpgme_error_t addDesignatedRevoker (const char *uid);      gpgme_error_t setPrimaryUserid (int uid_indx);
149      gpgme_error_t addPhotoid (const char *jpg_file);      gpgme_error_t setKeyExpireDate (int key_index, long exp_timestamp,
150      gpgme_error_t enable (void);                                      bool exp_days);
151      gpgme_error_t disable (void);      gpgme_error_t revokeUserid (int uid_indx);
152      gpgme_error_t setUseridPreferences (int uid_index, const char *new_prefs);      gpgme_error_t revokeSignature (int uid_index, int sig_index);
153      gpgme_error_t delUseridSignature (int uid_index, int sig_index);      gpgme_error_t revokeSubkey (int key_index, int reason, const char *cmt);
154      gpgme_error_t setPreferredKeyserver (int uid_index, const char *url);      gpgme_error_t addDesignatedRevoker (const char *uid);
155        gpgme_error_t addPhotoid (const char *jpg_file);
156      gpgme_error_t getUseridInfo (gpg_uid_info_t *r_uinf);      gpgme_error_t enable (void);
157        gpgme_error_t disable (void);
158      gpgme_error_t getDesignatedRevoker (gpg_desig_rev_t *r_rev);      gpgme_error_t setUseridPreferences (int uid_index, const char *new_prefs);
159  };      gpgme_error_t delUseridSignature (int uid_index, int sig_index);
160        gpgme_error_t setPreferredKeyserver (int uid_index, const char *url);
161  BOOL keyedit_add_subkey (winpt_key_t k, HWND dlg, listview_ctrl_t lv);      gpgme_error_t cleanKey (void);
162  BOOL keyedit_add_userid (winpt_key_t k, HWND dlg, listview_ctrl_t lv);  
163  BOOL keyedit_add_revoker (winpt_key_t k, HWND dlg);      gpgme_error_t getUseridInfo (gpg_uid_info_t *r_uinf);
164  BOOL keyedit_add_photo (winpt_key_t k, HWND dlg );  
165  BOOL keyedit_change_passwd (winpt_key_t k, HWND dlg);      gpgme_error_t getDesignatedRevoker (gpg_desig_rev_t *r_rev);
166  BOOL keyedit_set_pref_keyserver (winpt_key_t k, HWND dlg);  };
167    
168  gpgme_error_t gpg_editkey (gpgme_ctx_t ctx, gpgme_key_t key, GpgKeyEdit *ek);  BOOL keyedit_add_subkey (winpt_key_t k, HWND dlg, listview_ctrl_t lv);
169  void          gpg_uid_info_release (gpg_uid_info_t inf);  BOOL keyedit_add_userid (winpt_key_t k, HWND dlg, listview_ctrl_t lv);
170  void          gpg_desig_rev_release (gpg_desig_rev_t rev);  BOOL keyedit_add_revoker (winpt_key_t k, HWND dlg);
171    BOOL keyedit_add_photo (winpt_key_t k, HWND dlg );
172  #endif /*WPT_KEY_EDIT_H*/  BOOL keyedit_change_passwd (winpt_key_t k, HWND dlg);
173    BOOL keyedit_set_pref_keyserver (winpt_key_t k, HWND dlg);
174    
175    gpgme_error_t gpg_editkey (gpgme_ctx_t ctx, gpgme_key_t key, GpgKeyEdit *ek);
176    void          gpg_uid_info_release (gpg_uid_info_t inf);
177    void          gpg_desig_rev_release (gpg_desig_rev_t rev);
178    
179    #endif /*WPT_KEY_EDIT_H*/

Legend:
Removed from v.24  
changed lines
  Added in v.170

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26