1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
|
/*
kpgp.h
Copyright (C) 2001,2002 the KPGP authors
See file AUTHORS.kpgp for details
This file is part of KPGP, the KDE PGP/GnuPG support library.
KPGP is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef KPGP_H
#define KPGP_H
#include <stdio.h>
#include <tqstring.h>
#include <tqstrlist.h>
#include <tqdialog.h>
#include <tqwidget.h>
#include <tqcombobox.h>
#include <tqlayout.h>
#include <tqpushbutton.h>
#include <tqlistview.h>
#include <tqbuttongroup.h>
#include <tqradiobutton.h>
#include <tqmultilineedit.h>
#include <tqcheckbox.h>
#include <kdialogbase.h>
#include "kpgpkey.h"
#include <tdepimmacros.h>
class TQLineEdit;
class TQCursor;
class TQCheckBox;
class TQGridLayout;
class TDEConfig;
namespace Kpgp {
/** This enumerated type is used by Kpgp::* to indicate which keys can be
selected by the user. The following values are available:
- Kpgp::PublicKeys: Public keys are shown in the selection dialog.
- Kpgp::SecretKeys: Secret keys are shown in the selection dialog.
- Kpgp::EncryptionKeys: Encryption keys can be selected.
- Kpgp::SigningKeys: Signing keys can be selected.
- Kpgp::ValidKeys: Only valid keys can be selected.
- Kpgp::TrustedKeys: Only trusted keys can be selected.
- Kpgp::AllKeys == PublicKeys | SecretKeys | EncryptionKeys | SigningKeys
*/
enum { PublicKeys = 1,
SecretKeys = 2,
EncryptionKeys = 4,
SigningKeys = 8,
ValidKeys = 16,
TrustedKeys = 32,
AllKeys = PublicKeys | SecretKeys | EncryptionKeys | SigningKeys,
PubSecKeys = PublicKeys | SecretKeys,
EncrSignKeys = EncryptionKeys | SigningKeys
};
enum Result
{
Failure = 0,
Ok = 1,
Canceled = 2
};
class Base;
class Block;
class KDE_EXPORT Module
{
friend class Block;
private:
// the class running pgp
Base *pgp;
public:
Module();
virtual ~Module();
/** the following virtual function form the interface to the
application using Kpgp
*/
virtual void readConfig();
virtual void writeConfig(bool sync);
virtual void init();
/** decrypts the given OpenPGP block if the passphrase is good.
returns false otherwise */
bool decrypt( Block& block );
/** Tries to verify the given OpenPGP block */
bool verify( Block& block );
/** clearsigns the given OpenPGP block with the key corresponding to the
given key id. The charset is needed to display the text correctly.
Returns
Failure if there was an unresolvable error
Canceled if signing was canceled
Ok if everything is o.k.
*/
Kpgp::Result clearsign( Block& block,
const KeyID& keyId, const TQCString& charset = 0 );
/** encrypts the given OpenPGP block for a list of persons. if sign is true
then the block is clearsigned with the key corresponding to the given
key id. The charset is needed to display the text correctly.
Returns
Failure if there was an unresolvable error
Canceled if encryption was canceled
Ok if everything is o.k.
*/
Kpgp::Result encrypt( Block& block,
const TQStringList& receivers, const KeyID& keyId,
bool sign, const TQCString& charset = 0 );
/** Determines the keys which should be used for encrypting the message
to the given list of recipients.
Returns:
Failure if there was an unresolvable error
Canceled if encryption was canceled
Ok if everything is o.k.
*/
Kpgp::Result getEncryptionKeys( KeyIDList& encryptionKeyIds,
const TQStringList& recipients,
const KeyID& keyId );
/** checks if encrypting to the given list of persons is possible and
desired, i.e. if we have a (trusted) key for every recipient and
if encryption to all keys is allowed.
Returns
0 if encryption is not possible or not desired,
1 if encryption is possible and desired,
2 if encryption is possible, but the user wants to be asked and
-1 if there is a conflict which can't be automatically resolved.
*/
int encryptionPossible( const TQStringList& recipients );
protected:
int doEncSign( Block& block, const KeyIDList& recipientKeyIds, bool sign );
public:
/** sign a key in the keyring with users signature. */
bool signKey( const KeyID& keyID );
/** get the list of cached public keys. */
const KeyList publicKeys();
/** get the list of cached secret keys. */
const KeyList secretKeys();
/** Reads the list of public keys if necessary or if <em>reread</em> is true.
*/
void readPublicKeys( bool reread = false );
/** Reads the list of secret keys if necessary or if <em>reread</em> is true.
*/
void readSecretKeys( bool reread = false );
/** try to get an ascii armored key block for the given public key */
TQCString getAsciiPublicKey( const KeyID& keyID );
/** Returns the public key with the given key ID or null if no matching
key is found.
*/
Key* publicKey( const KeyID& keyID );
/** Returns the first public key with the given user ID or null if no
matching key is found.
*/
Key* publicKey( const TQString& userID );
/** Returns the secret key with the given key ID or null if no matching
key is found.
*/
Key* secretKey( const KeyID& keyID );
/** Returns the trust value for the given key. This is the maximal trust
value of any of the user ids of this key.
*/
Validity keyTrust( const KeyID& keyID );
/** Returns the trust value of a key with the given user id. If more than
one key have this user id then the first key with this user id will be
chosen.
*/
Validity keyTrust( const TQString& userID );
/** Returns TRUE if the given key is at least trusted marginally. Otherwise
FALSE is returned.
*/
bool isTrusted( const KeyID& keyID );
/** Rereads the key data for the given key and returns the reread data. If
<em>readTrust</em> is true then the trust of this key will be determined.
*/
Key* rereadKey( const KeyID& keyID, const bool readTrust = true );
/** Request the change of the passphrase of the actual secret
key. TBI */
bool changePassPhrase();
/** set a user identity to use (if you have more than one...)
by default, pgp uses the identity which was generated last. */
void setUser(const KeyID& keyID);
/** Returns the actual key ID of the currently set key. */
const KeyID user() const;
/** always encrypt message to oneself? */
void setEncryptToSelf(bool flag);
bool encryptToSelf(void) const;
/** store passphrase in pgp object
Problem: passphrase stays in memory.
Advantage: you can call en-/decrypt without always passing the
passphrase
*/
void setStorePassPhrase(bool);
bool storePassPhrase(void) const;
/** clears everything from memory */
void clear(const bool erasePassPhrase = FALSE);
/** returns the last error that occurred */
const TQString lastErrorMsg(void) const;
// what version of PGP/GPG should we use
enum PGPType { tAuto, tGPG, tPGP2, tPGP5, tPGP6, tOff } pgpType;
// did we find a pgp executable?
bool havePGP(void) const;
/** Should PGP/GnuPG be used? */
bool usePGP(void) const { return (havePGP() && (pgpType != tOff)); }
// show the result of encryption/signing?
void setShowCipherText(const bool flag);
bool showCipherText(void) const;
// show the encryption keys for approval?
void setShowKeyApprovalDlg(const bool flag);
bool showKeyApprovalDlg(void) const;
/** Shows a key selection dialog with all secret keys and the given title
and the (optional) text. If <em>keyId</em> is given, then the
corresponding key is selected.
*/
KeyID selectSecretKey( const TQString& title,
const TQString& text = TQString(),
const KeyID& keyId = KeyID() );
/** Shows a key selection dialog with all public keys and the given title
and the (optional) text. If <em>oldKeyId</em> is given, then the
corresponding key is selected. If <em>address</em> is given, then the
chosen key will be stored (if the user wants it to be stored).
<em>mode</em> specifies which keys can be selected.
*/
KeyID selectPublicKey( const TQString& title,
const TQString& text = TQString(),
const KeyID& oldKeyId = KeyID(),
const TQString& address = TQString(),
const unsigned int allowedKeys = AllKeys );
/** Shows a key selection dialog with all public keys and the given title
and the (optional) text. If <em>oldKeyId</em> is given, then the
corresponding key is selected. If <em>address</em> is given, then the
chosen key will be stored (if the user wants it to be stored).
<em>mode</em> specifies which keys can be selected.
*/
KeyIDList selectPublicKeys( const TQString& title,
const TQString& text = TQString(),
const KeyIDList& oldKeyIds = KeyIDList(),
const TQString& address = TQString(),
const unsigned int allowedKeys = AllKeys );
// FIXME: key management
/** Reads the encryption preference for the given address
from the config file.
*/
EncryptPref encryptionPreference( const TQString& address );
/** Writes the given encryption preference for the given address
to the config file.
*/
void setEncryptionPreference( const TQString& address,
const EncryptPref pref );
// -- static member functions --------------------------------------------
/** return the actual pgp object */
static Kpgp::Module *getKpgp();
/** get the kpgp config object */
static TDEConfig *getConfig();
/** Parses the given message and splits it into OpenPGP blocks and
Non-OpenPGP blocks.
Returns TRUE if the message contains at least one OpenPGP block and
FALSE otherwise.
The format is then:
<pre>
1st Non-OpenPGP block
1st OpenPGP block
2nd Non-OpenPGP block
...
n-th OpenPGP block
(n+1)-th Non-OpenPGP block
</pre>
*/
static bool prepareMessageForDecryption( const TQCString& msg,
TQPtrList<Block>& pgpBlocks,
TQStrList& nonPgpBlocks );
private:
/** check if we have a trusted encryption key for the given person */
bool haveTrustedEncryptionKey( const TQString& person );
/** get a list of encryption keys to be used for the given recipient */
KeyIDList getEncryptionKeys( const TQString& person );
/** Set pass phrase */
bool setPassPhrase(const char* pass);
/** test if the PGP executable is found and if there is a passphrase
set or given. Returns:
1 if everything is ok
0 (together with some warning message) if something is missing
-1 if the passphrase dialog was canceled
*/
int prepare(bool needPassPhrase=FALSE, Block* block = 0 );
/** cleanup passphrase if it should not be stored. */
void cleanupPass() { if (!storePass) wipePassPhrase(); }
/** Wipes and optionally frees the memory used to hold the
passphrase. */
void wipePassPhrase(bool free=false);
// transform an address into canonical form
TQString canonicalAddress( const TQString& person );
/** Shows a dialog to let the user select a key from the given list of keys
*/
KeyID selectKey( const KeyList& keys,
const TQString& title,
const TQString& text = TQString(),
const KeyID& keyId = KeyID(),
const unsigned int allowedKeys = AllKeys );
/** Shows a dialog to let the user select a key from the given list of keys
*/
KeyIDList selectKeys( const KeyList& keys,
const TQString& title,
const TQString& text = TQString(),
const KeyIDList& keyIds = KeyIDList(),
const unsigned int allowedKeys = AllKeys );
/** Shows a dialog to let the user select a key from the given list of keys.
The dialog includes a checkbox ("Remember decision"). The state of the
checkbox is returned in rememberChoice.
*/
KeyID selectKey( bool& rememberChoice,
const KeyList& keys,
const TQString& title,
const TQString& text = TQString(),
const KeyID& keyId = KeyID(),
const unsigned int allowedKeys = AllKeys );
/** Shows a dialog to let the user select a list of keys from the given
list of keys. The dialog includes a checkbox ("Remember decision").
The state of the checkbox is returned in rememberChoice.
*/
KeyIDList selectKeys( bool& rememberChoice,
const KeyList& keys,
const TQString& title,
const TQString& text = TQString(),
const KeyIDList& keyIds = KeyIDList(),
const unsigned int allowedKeys = AllKeys );
/** Returns the OpenPGP keys which should be used for encryption to the
given address.
*/
KeyIDList keysForAddress( const TQString& address );
/** Set an email address -> list of OpenPGP keys association.
*/
void setKeysForAddress( const TQString& address, const KeyIDList& keyIDs );
/** Remove an email address -> OpenPGP key association. */
void removeKeyForAddress( const TQString& address );
/** Reads the email address -> OpenPGP key associations from the config
file.
*/
void readAddressData();
/** Writes the email address -> OpenPGP key associations to the config
file.
*/
void writeAddressData();
bool checkForPGP(void);
void assignPGPBase(void);
static Kpgp::Module *kpgpObject;
TDEConfig *config;
struct AddressData {
KeyIDList keyIds;
EncryptPref encrPref;
};
typedef TQMap<TQString, AddressData> AddressDataDict;
AddressDataDict addressDataDict;
KeyList mPublicKeys;
bool mPublicKeysCached : 1; // did we already read the public keys?
KeyList mSecretKeys;
bool mSecretKeysCached : 1; // did we already read the secret keys?
bool storePass : 1;
char * passphrase;
size_t passphrase_buffer_len;
TQString errMsg;
KeyID pgpUser; // the key ID which is used to sign/encrypt to self
bool flagEncryptToSelf : 1;
bool havePgp : 1;
bool havePGP5 : 1;
bool haveGpg : 1;
bool havePassPhrase : 1;
bool showEncryptionResult : 1;
bool mShowKeyApprovalDlg : 1;
}; // class Module
// -- inlined member functions ---------------------------------------------
inline void
Module::setShowKeyApprovalDlg( const bool flag )
{
mShowKeyApprovalDlg = flag;
}
inline bool
Module::showKeyApprovalDlg( void ) const
{
return mShowKeyApprovalDlg;
}
// -------------------------------------------------------------------------
} // namespace Kpgp
#endif
|