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

Contents of /trunk/Include/wptKeyManager.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 271 - (show annotations)
Sun Nov 5 08:57:45 2006 UTC (18 years, 3 months ago) by twoaday
File MIME type: text/plain
File size: 3183 byte(s)


1 /* wptKeyManager.h - Key manager
2 * Copyright (C) 2001-2006 Timo Schulz
3 *
4 * This file is part of WinPT.
5 *
6 * WinPT is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * WinPT is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with WinPT; if not, write to the Free Software Foundation,
18 * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21 #ifndef WPT_KEYMANAGER_H
22 #define WPT_KEYMANAGER_H
23
24 #include "wptContext.h"
25
26 #define send_cmd_id(hwnd, id) \
27 PostMessage ((hwnd), WM_COMMAND, MAKEWPARAM ((id), 0), 0)
28
29 #define KM_PRELOAD_KEYS 6
30
31 /* possible key flags. */
32 enum km_flag_t {
33 KM_FLAG_REVOKED = 0x01,
34 KM_FLAG_EXPIRED = 0x02,
35 KM_FLAG_DISABLED = 0x04,
36 };
37
38
39 enum km_ks_t {
40 KM_KS_REFRESH = 0x01
41 };
42
43 struct km_group_s {
44 config_file_t gh;
45 HWND tree;
46 unsigned int need_sync:1;
47 char *cfgfile;
48 };
49 typedef struct km_group_s * km_group_t;
50
51 struct km_group_cb_s {
52 km_group_s *gc;
53 char name[256];
54 int use_name;
55 };
56
57
58 /*-- wptClipImportDlg.cpp --*/
59 int print_import_status (gpgme_import_result_t res);
60
61 /*-- wptKeyManager.cpp --*/
62 int km_check_for_seckey (listview_ctrl_t lv, int pos, int * utrust);
63 int km_check_key_status( listview_ctrl_t lv, int pos );
64 int km_get_key_status( listview_ctrl_t lv, int pos );
65 char* km_key_get_info (winpt_key_t key, int is_sec);
66 int km_clip_export( HWND dlg, listview_ctrl_t lv);
67 int km_file_export( HWND dlg, listview_ctrl_t lv, const char *fname );
68 int km_privkey_export(HWND dlg, listview_ctrl_t lv, const char *fname );
69 int km_set_implicit_trust (HWND dlg, listview_ctrl_t lv, int pos);
70 int km_clip_import (HWND dlg, int *r_newkeys, int *r_newsks);
71 int km_file_import (HWND dlg, const char *fname,
72 int *r_newkeys, int *r_newsks);
73 int km_http_import (HWND dlg, const char * url);
74 int km_dropped_file_import (HWND dlg, HDROP hdrop,
75 int *r_newkeys, int *r_newsks);
76 int km_delete_keys( listview_ctrl_t lv, HWND dlg );
77 int km_send_to_keyserver( listview_ctrl_t lv, HWND dlg, const char * host, unsigned short port);
78 int km_send_to_mail_recipient( listview_ctrl_t lv, HWND dlg );
79 int km_refresh_from_keyserver(listview_ctrl_t lv, HWND dlg);
80 int km_check_if_protected( listview_ctrl_t lv, int pos );
81 int km_enable_disable_key( listview_ctrl_t lv, HWND dlg, int pos, int enable );
82 void km_set_clip_info( const char *uid );
83 int km_key_is_v3( listview_ctrl_t lv, int pos );
84 void km_find_key (HWND dlg, listview_ctrl_t lv);
85 char* km_gen_export_filename (const char *keyid, int is_secret);
86 int km_get_key (listview_ctrl_t lv, int pos, winpt_key_t k);
87 gpgme_key_t km_get_key_ptr (listview_ctrl_t lv, int idx,
88 struct keycache_s **r_ctx);
89 void km_key_show_revoc_info (winpt_key_t k);
90
91 #endif /* WPT_KEYMANAGER_H */

Properties

Name Value
svn:eol-style native

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26