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
|
/*
* Copyright (C) 2002 Jean-Baptiste Mardelle <[email protected]>
* Copyright (C) 2007,2008,2009,2010,2011,2012
* Rolf Eike Beer <[email protected]>
*/
/***************************************************************************
* *
* This program 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. *
* *
***************************************************************************/
#ifndef KGPGINTERFACE_H
#define KGPGINTERFACE_H
#include "core/kgpgkey.h"
#include <QStringList>
class KGpgKeyNode;
class KProcess;
class QString;
class QApplication;
/**
* GnuPG interface functions
*/
namespace KgpgInterface {
QString getGpgSetting(const QString &name, const QString &configfile);
void setGpgSetting(const QString &name, const QString &value, const QString &url);
bool getGpgBoolSetting(const QString &name, const QString &configfile);
void setGpgBoolSetting(const QString &name, const bool enable, const QString &url);
/**
* @brief ask the user for a passphrase and send it to the given gpg process
* @param text text is the message that must be displayed in the MessageBox
* @param process GnuPG process
* @param isnew if the password is a \e new password that must be confirmed. Default is true
* @param widget parent widget of this dialog or NULL
* @return 0 if there is no error
* @return 1 if there is an error
*/
int sendPassphrase(const QString &text, KProcess *process, QWidget *widget = NULL);
KgpgCore::KgpgKeyList readPublicKeys(const QStringList &ids = QStringList());
void readSignatures(KGpgKeyNode *node);
KgpgCore::KgpgKeyList readSecretKeys(const QStringList &ids = QStringList());
};
#endif // KGPGINTERFACE_H
|