1 |
/* wptSymEnc.cpp - Symmetric encryption support |
2 |
* Copyright (C) 2002-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 |
#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 |
gpgme_error_t |
57 |
gpg_clip_sym_encrypt (void) |
58 |
{ |
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 |
pass = request_passphrase2 (_("Symmetric Encryption"), |
67 |
PASSDLG_NOTEMPTY, &cancel); |
68 |
if (cancel) |
69 |
return 0; |
70 |
rc = gpgme_new (&ctx); |
71 |
if (rc) |
72 |
goto leave; |
73 |
rc = gpg_data_utf8_new_from_clipboard (&plain, 0, NULL); |
74 |
if (rc) |
75 |
goto leave; |
76 |
rc = gpgme_data_new (&ciph); |
77 |
if (rc) |
78 |
goto leave; |
79 |
gpgme_set_armor (ctx, 1); |
80 |
gpgme_set_textmode (ctx, 1); |
81 |
|
82 |
gpgme_set_passphrase_cb (ctx, sym_passphrase_cb, pass); |
83 |
|
84 |
rc = gpgme_op_encrypt (ctx, NULL, (gpgme_encrypt_flags_t)0, plain, ciph); |
85 |
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_to_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 |
return rc; |
101 |
} |