/usr/include/kpgp/kpgpblock.h is in kdepim-dev 4:4.13.0-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*
kpgpblock.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 KPGPBLOCK_H
#define KPGPBLOCK_H
#include "libkpgp_export.h"
#include "kpgp.h"
#include <QtCore/QStringList>
#include <QtCore/QString>
namespace Kpgp {
#ifdef ERROR
# undef ERROR
#endif
enum BlockType {
UnknownBlock = -1, // BEGIN PGP ???
NoPgpBlock = 0,
PgpMessageBlock = 1, // BEGIN PGP MESSAGE
MultiPgpMessageBlock = 2, // BEGIN PGP MESSAGE, PART X[/Y]
SignatureBlock = 3, // BEGIN PGP SIGNATURE
ClearsignedBlock = 4, // BEGIN PGP SIGNED MESSAGE
PublicKeyBlock = 5, // BEGIN PGP PUBLIC KEY BLOCK
PrivateKeyBlock = 6 // BEGIN PGP PRIVATE KEY BLOCK (PGP 2.x: ...SECRET...)
};
enum MessageStatus{
OK = 0x0000,
RUN_ERR = 0x0001,
ERROR = 0x0001,
ENCRYPTED = 0x0002,
SIGNED = 0x0004,
GOODSIG = 0x0008,
ERR_SIGNING = 0x0010,
UNKNOWN_SIG = 0x0020,
BADPHRASE = 0x0040,
BADKEYS = 0x0080,
NO_SEC_KEY = 0x0100,
MISSINGKEY = 0x0200,
CANCEL = 0x8000
};
/*
* BEGIN PGP MESSAGE
* Used for signed, encrypted, or compressed files.
*
* BEGIN PGP PUBLIC KEY BLOCK
* Used for armoring public keys
*
* BEGIN PGP PRIVATE KEY BLOCK (PGP 2.x: BEGIN PGP SECRET KEY BLOCK)
* Used for armoring private keys
*
* BEGIN PGP MESSAGE, PART X/Y
* Used for multi-part messages, where the armor is split amongst Y
* parts, and this is the Xth part out of Y.
*
* BEGIN PGP MESSAGE, PART X
* Used for multi-part messages, where this is the Xth part of an
* unspecified number of parts. Requires the MESSAGE-ID Armor
* Header to be used.
*
* BEGIN PGP SIGNATURE
* Used for detached signatures, OpenPGP/MIME signatures, and
* signatures following clearsigned messages. Note that PGP 2.x
* uses BEGIN PGP MESSAGE for detached signatures.
*
* BEGIN PGP SIGNED MESSAGE
* Used for cleartext signed messages.
*/
class KPGP_EXPORT Block
{
public:
explicit Block( const QByteArray& str = QByteArray() );
~Block();
QByteArray text() const;
void setText( const QByteArray& str );
void setProcessedText( const QByteArray& str );
int status() const;
void setStatus( const int status );
BlockType type() const;
/** is the message encrypted ? */
bool isEncrypted() const;
/** is the message signed by someone */
bool isSigned() const;
/** is the signature good ? */
bool goodSignature() const;
/** returns the primary user id of the signer or a null string if we
don't have the public key of the signer */
QString signatureUserId() const;
void setSignatureUserId( const QString& userId );
/** keyID of signer */
QByteArray signatureKeyId() const;
void setSignatureKeyId( const QByteArray& keyId );
/** date of the signature
WARNING: Will most likely be changed to QDateTime */
QByteArray signatureDate() const;
void setSignatureDate( const QByteArray& date );
/** the persons who can decrypt the message */
const QStringList encryptedFor() const;
/** shows the secret key which is needed
to decrypt the message */
QByteArray requiredKey() const;
void setRequiredKey( const QByteArray& keyId );
QString requiredUserId() const;
void setRequiredUserId( const QString& userId );
QByteArray error() const;
void setError( const QByteArray& str );
/** Resets all information about this OpenPGP block */
void reset();
/** decrypts this OpenPGP block if the passphrase is good.
returns false otherwise */
bool decrypt();
/** tries to verify this (clearsigned) OpenPGP block */
bool verify();
/** clearsigns this OpenPGP block with the key corresponding to the
given key id. The charset is needed to display the text correctly.
Returns
false if there was an unresolvable error or if signing was canceled
true if everything is o.k.
*/
Kpgp::Result clearsign( const QByteArray& keyId,
const QByteArray& charset = QByteArray() );
/** encrypts this OpenPGP block for a list of persons. if sign is true then
the message is signed with the key corresponding to the given key id.
Returns
false if there was an unresolvable error or if encryption was canceled
true if everything is o.k.
*/
Kpgp::Result encrypt( const QStringList& receivers, const QByteArray& keyId,
const bool sign, const QByteArray& charset = QByteArray() );
private:
void clear();
BlockType determineType() const;
QByteArray mText;
QByteArray mProcessedText;
QByteArray mError;
QString mSignatureUserId;
QByteArray mSignatureKeyId;
QByteArray mSignatureDate;
QByteArray mRequiredKey;
QString mRequiredUserId;
QStringList mEncryptedFor;
int mStatus;
bool mHasBeenProcessed;
mutable BlockType mType;
};
// -- inlined member functions ---------------------------------------------
inline QByteArray
Block::text() const
{
if( mHasBeenProcessed )
return mProcessedText;
else
return mText;
}
inline void
Block::setText( const QByteArray& str )
{
clear();
mText = str;
}
inline void
Block::setProcessedText( const QByteArray& str )
{
mProcessedText = str;
mHasBeenProcessed = true;
}
inline QByteArray
Block::error() const
{
return mError;
}
inline void
Block::setError( const QByteArray& str )
{
mError = str;
}
inline int
Block::status() const
{
return mStatus;
}
inline void
Block::setStatus( const int status )
{
mStatus = status;
}
inline BlockType
Block::type() const
{
if( mType == NoPgpBlock )
mType = determineType();
return mType;
}
inline QString
Block::signatureUserId() const
{
return mSignatureUserId;
}
inline void
Block::setSignatureUserId( const QString& userId )
{
mSignatureUserId = userId;
}
inline QByteArray
Block::signatureKeyId() const
{
return mSignatureKeyId;
}
inline void
Block::setSignatureKeyId( const QByteArray& keyId )
{
mSignatureKeyId = keyId;
}
inline QByteArray
Block::signatureDate() const
{
return mSignatureDate;
}
inline void
Block::setSignatureDate( const QByteArray& date )
{
mSignatureDate = date;
}
inline QByteArray
Block::requiredKey() const
{
return mRequiredKey;
}
inline void
Block::setRequiredKey( const QByteArray& keyId )
{
mRequiredKey = keyId;
}
inline QString
Block::requiredUserId() const
{
return mRequiredUserId;
}
inline void
Block::setRequiredUserId( const QString& userId )
{
mRequiredUserId = userId;
}
inline const QStringList
Block::encryptedFor() const
{
return mEncryptedFor;
}
inline bool
Block::isEncrypted() const
{
if( mStatus & ENCRYPTED )
return true;
return false;
}
inline bool
Block::isSigned() const
{
if( mStatus & SIGNED )
return true;
return false;
}
inline bool
Block::goodSignature() const
{
if( mStatus & GOODSIG )
return true;
return false;
}
/*
inline bool
Block::unknownSigner() const
{
if( mStatus & UNKNOWN_SIG )
return true;
return false;
}
*/
// -------------------------------------------------------------------------
} // namespace Kpgp
#endif
|