~ubuntu-branches/ubuntu/precise/kgpg/precise-updates

« back to all changes in this revision

Viewing changes to transactions/kgpgencrypt.h

  • Committer: Package Import Robot
  • Author(s): Philip Muškovac
  • Date: 2011-12-24 23:16:12 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20111224231612-1esf4004sfou258b
Tags: 4:4.7.95-0ubuntu1
New upstream release candidate

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
        KGpgEncrypt(); // = delete C++0x
35
35
public:
36
36
        enum EncryptOption {
37
 
                DefaultEncryption = 0,
38
 
                AsciiArmored = 0x1,
39
 
                AllowUntrustedEncryption = 0x2,
40
 
                HideKeyId = 0x4
 
37
                DefaultEncryption = 0,          ///< use whatever GnuPGs defaults are
 
38
                AsciiArmored = 0x1,             ///< output the data as printable ASCII as opposed to binary data
 
39
                AllowUntrustedEncryption = 0x2, ///< allow encryption with untrusted keys, ignored for symmetric encryption
 
40
                HideKeyId = 0x4                 ///< remove anything that shows which key ids this data is encrypted to, ignored for symmetric encryption
41
41
        };
42
42
        Q_DECLARE_FLAGS(EncryptOptions, EncryptOption);
43
43
 
79
79
        const EncryptOptions m_options;
80
80
        const QStringList m_userIds;
81
81
        QStringList m_extraOptions;
 
82
        QString m_currentFile;
82
83
};
83
84
 
84
85
Q_DECLARE_OPERATORS_FOR_FLAGS(KGpgEncrypt::EncryptOptions);