aboutsummaryrefslogtreecommitdiffstats
path: root/gpgcontext.h
blob: 76f753ee2d8608a29d9033bb92f593daf68b08c8 (plain)
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
/*
 *      gpgcontext.h
 *
 *      Copyright 2008 gpg4usb-team <[email protected]>
 *
 *      This file is part of gpg4usb.
 *
 *      Gpg4usb 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 3 of the License, or
 *      (at your option) any later version.
 *
 *      Gpg4usb is distributed in the hope that it will be useful,
 *      but WITHOUT ANY WARRANTY; without even the implied warranty of
 *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *      GNU General Public License for more details.
 *
 *      You should have received a copy of the GNU General Public License
 *      along with gpg4usb.  If not, see <http://www.gnu.org/licenses/>
 */

#ifndef __SGPGMEPP_CONTEXT_H__
#define __SGPGMEPP_CONTEXT_H__

#include "gpgconstants.h"
#include <locale.h>
#include <errno.h>
#include <gpgme.h>
#include <QLinkedList>
#include <QtGui>

QT_BEGIN_NAMESPACE
class QMessageBox;
class sstream;
class QApplication;
class QByteArray;
class QString;
QT_END_NAMESPACE

class GpgKey
{
public:
    GpgKey() {
        privkey = false;
    }
    QString id;
    QString name;
    QString email;
    QString fpr;
    bool privkey;
    bool expired;
    bool revoked;
};

typedef QLinkedList< GpgKey > GpgKeyList;

class GpgImportedKey
{
public:
    QString fpr;
    int importStatus;
};

typedef QLinkedList< GpgImportedKey > GpgImportedKeyList;

class GpgImportInformation
{
public:
    GpgImportInformation() {
        considered = 0;
        no_user_id = 0;
        imported = 0;
        imported_rsa = 0;
        unchanged = 0;
        new_user_ids = 0;
        new_sub_keys = 0;
        new_signatures = 0;
        new_revocations = 0;
        secret_read = 0;
        secret_imported = 0;
        secret_unchanged = 0;
        not_imported = 0;
    }

    int considered;
    int no_user_id;
    int imported;
    int imported_rsa;
    int unchanged;
    int new_user_ids;
    int new_sub_keys;
    int new_signatures;
    int new_revocations;
    int secret_read;
    int secret_imported;
    int secret_unchanged;
    int not_imported;
    GpgImportedKeyList importedKeys;
};

namespace GpgME
{

class GpgContext : public QObject
{
    Q_OBJECT

public:
    GpgContext(); // Constructor
    ~GpgContext(); // Destructor
    GpgImportInformation importKey(QByteArray inBuffer);
    bool exportKeys(QStringList *uidList, QByteArray *outBuffer);
    void generateKey(QString *params);
    GpgKeyList listKeys();
    void deleteKeys(QStringList *uidList);
    bool encrypt(QStringList *uidList, const QByteArray &inBuffer,
                 QByteArray *outBuffer);
    bool decrypt(const QByteArray &inBuffer, QByteArray *outBuffer);
    void clearPasswordCache();
    void exportSecretKey(QString uid, QByteArray *outBuffer);
    gpgme_key_t getKeyDetails(QString uid);
    gpgme_signature_t verify(QByteArray in);
//    void decryptVerify(QByteArray in);
    bool sign(QStringList *uidList, const QByteArray &inBuffer, QByteArray *outBuffer );
    /**
     * @details If text contains PGP-message, put a linebreak before the message,
     * so that gpgme can decrypt correctly
     *
     * @param in Pointer to the QBytearray to check.
     */
    void preventNoDataErr(QByteArray *in);

    GpgKey getKeyByFpr(QString fpr);
    GpgKey getKeyById(QString id);

    static QString gpgErrString(gpgme_error_t err);
    static QString getGpgmeVersion();

    /**
     * @brief
     *
     * @param text
     * @return \li 2, if the text is completly signed,
     *          \li 1, if the text is partially signed,
     *          \li 0, if the text is not signed at all.
     */
    int textIsSigned(const QByteArray &text);
    QString beautifyFingerprint(QString fingerprint);

signals:
    void signalKeyDBChanged();

private slots:
    void slotRefreshKeyList();

private:
    gpgme_ctx_t mCtx;
    gpgme_data_t in, out;
    gpgme_error_t err;
    gpgme_error_t readToBuffer(gpgme_data_t in, QByteArray *outBuffer);
    QByteArray mPasswordCache;
    QSettings settings;
    bool debug;
    GpgKeyList mKeyList;
    int checkErr(gpgme_error_t err) const;
    int checkErr(gpgme_error_t err, QString comment) const;

    static gpgme_error_t passphraseCb(void *hook, const char *uid_hint,
                                      const char *passphrase_info,
                                      int last_was_bad, int fd);
    gpgme_error_t passphrase(const char *uid_hint,
                             const char *passphrase_info,
                             int last_was_bad, int fd);

    void executeGpgCommand(QStringList arguments,
                           QByteArray *stdOut,
                           QByteArray *stdErr);
    QString gpgBin;
    QString gpgKeys;
};
} // namespace GpgME

#endif // __SGPGMEPP_CONTEXT_H__