/[winpt]/trunk/Src/wptSymEnc.cpp
ViewVC logotype

Annotation of /trunk/Src/wptSymEnc.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 278 - (hide annotations)
Mon Jan 15 22:02:04 2007 UTC (18 years, 1 month ago) by twoaday
File size: 2684 byte(s)
See ChangeLog.


1 werner 36 /* wptSymEnc.cpp - Symmetric encryption support
2 twoaday 226 * Copyright (C) 2002-2006 Timo Schulz
3 werner 36 *
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     #ifdef HAVE_CONFIG_H
17     #include <config.h>
18     #endif
19    
20     #include <windows.h>
21    
22     #include "wptGPG.h"
23     #include "wptCommonCtl.h"
24     #include "wptContext.h"
25     #include "wptDlgs.h"
26     #include "wptNLS.h"
27     #include "wptUTF8.h"
28     #include "wptTypes.h"
29     #include "wptErrors.h"
30    
31    
32     /* Simple passphrase callback. The hook pointer is the passphrase itself.
33     Return value: 0 on success. */
34     gpgme_error_t
35     sym_passphrase_cb (void *hook, const char *hint, const char *pass_inf,
36     int prev_was_bad, int fd)
37     {
38     const char *pass = (const char*)hook;
39     HANDLE hd = (HANDLE)fd;
40     DWORD n;
41    
42     if (!pass)
43     return gpg_error (GPG_ERR_INV_ARG);
44    
45     if (!WriteFile (hd, pass, strlen (pass), &n, NULL))
46     log_debug ("sym_passphrase_cb: WriteFile() failed ec=%d\n", w32_errno);
47     if (!WriteFile (hd, "\n", 1, &n, NULL))
48     log_debug ("sym_passphrase_cb: WriteFile() failed ec=%d\n", w32_errno);
49    
50     return 0;
51     }
52    
53    
54     /* Perform symmetric encryption on the current clipboard data.
55     Return 0 for success. */
56 twoaday 226 gpgme_error_t
57     gpg_clip_sym_encrypt (void)
58 werner 36 {
59     gpgme_ctx_t ctx;
60     gpgme_data_t plain=NULL;
61     gpgme_data_t ciph=NULL;
62     gpgme_error_t rc;
63     char *pass = NULL;
64     int cancel = 0;
65    
66 twoaday 181 pass = request_passphrase2 (_("Symmetric Encryption"),
67     PASSDLG_NOTEMPTY, &cancel);
68 werner 36 if (cancel)
69     return 0;
70     rc = gpgme_new (&ctx);
71     if (rc)
72     goto leave;
73     rc = gpg_data_new_from_clipboard (&plain, 0);
74     if (rc)
75     goto leave;
76     rc = gpgme_data_new (&ciph);
77 twoaday 228 if (rc)
78     goto leave;
79 werner 36 gpgme_set_armor (ctx, 1);
80 twoaday 226 gpgme_set_textmode (ctx, 1);
81 werner 36
82     gpgme_set_passphrase_cb (ctx, sym_passphrase_cb, pass);
83    
84 twoaday 226 rc = gpgme_op_encrypt (ctx, NULL, (gpgme_encrypt_flags_t)0, plain, ciph);
85 werner 36 if (rc)
86     msg_box (NULL, gpgme_strerror (rc), _("Symmetric Encryption"), MB_ERR);
87     else {
88     show_msg (GetDesktopWindow (), 1500, _("GnuPG Status: Finished"));
89     gpg_data_release_and_set_clipboard (ciph, 1);
90     ciph = NULL;
91     }
92    
93     leave:
94     if (plain)
95     gpgme_data_release (plain);
96     if (ciph)
97     gpgme_data_release (ciph);
98     gpgme_release (ctx);
99     sfree_if_alloc (pass);
100 twoaday 226 return rc;
101 werner 36 }

Properties

Name Value
svn:eol-style native

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26