GpgFrontend Project
A Free, Powerful, Easy-to-Use, Compact, Cross-Platform, and Installation-Free OpenPGP(pgp) Crypto Tool.
GpgKeyImportExporter.h
1 
29 #ifndef _GPGKEYIMPORTEXPORTOR_H
30 #define _GPGKEYIMPORTEXPORTOR_H
31 
32 #include <string>
33 
34 #include "core/GpgConstants.h"
35 #include "core/GpgContext.h"
36 #include "core/GpgFunctionObject.h"
37 #include "core/GpgModel.h"
38 
39 namespace GpgFrontend {
40 
46  public:
47  std::string fpr;
48  int import_status;
49 };
50 
51 typedef std::list<GpgImportedKey> GpgImportedKeyList;
52 
57 class GPGFRONTEND_CORE_EXPORT GpgImportInformation {
58  public:
60 
66  explicit GpgImportInformation(gpgme_import_result_t result);
67 
68  int considered = 0;
69  int no_user_id = 0;
70  int imported = 0;
71  int imported_rsa = 0;
72  int unchanged = 0;
73  int new_user_ids = 0;
74  int new_sub_keys = 0;
75  int new_signatures = 0;
76  int new_revocations = 0;
77  int secret_read = 0;
78  int secret_imported = 0;
79  int secret_unchanged = 0;
80  int not_imported = 0;
81 
82  GpgImportedKeyList importedKeys;
83 };
84 
89 class GPGFRONTEND_CORE_EXPORT GpgKeyImportExporter
90  : public SingletonFunctionObject<GpgKeyImportExporter> {
91  public:
97  explicit GpgKeyImportExporter(
99 
106  GpgImportInformation ImportKey(StdBypeArrayPtr inBuffer);
107 
117  bool ExportKeys(KeyIdArgsListPtr& uid_list, ByteArrayPtr& out_buffer,
118  bool secret = false) const;
119 
129  bool ExportKeys(const KeyArgsList& keys, ByteArrayPtr& outBuffer,
130  bool secret = false) const;
131 
140  bool ExportKey(const GpgKey& key, ByteArrayPtr& out_buffer) const;
141 
150  bool ExportKeyOpenSSH(const GpgKey& key, ByteArrayPtr& out_buffer) const;
151 
160  bool ExportSecretKey(const GpgKey& key, ByteArrayPtr& outBuffer) const;
161 
170  bool ExportSecretKeyShortest(const GpgKey& key,
171  ByteArrayPtr& outBuffer) const;
172 
173  private:
174  GpgContext& ctx_ =
176 };
177 
178 } // namespace GpgFrontend
179 
180 #endif // _GPGKEYIMPORTEXPORTOR_H
GpgFrontend::SingletonFunctionObject
Definition: GpgFunctionObject.h:148
GpgFrontend::GpgKeyImportExporter::ExportKeys
bool ExportKeys(KeyIdArgsListPtr &uid_list, ByteArrayPtr &out_buffer, bool secret=false) const
Definition: GpgKeyImportExporter.cpp:71
GpgFrontend::GpgKey::GetId
std::string GetId() const
Definition: GpgKey.cpp:54
GpgFrontend
Definition: CoreCommonUtil.cpp:29
GpgFrontend::SingletonFunctionObject< GpgKeyGetter >::GetInstance
static GpgKeyGetter & GetInstance(int channel=GpgFrontend::GPGFRONTEND_DEFAULT_CHANNEL)
Get the Instance object.
Definition: GpgFunctionObject.h:170
GpgFrontend::check_gpg_error
GPGFRONTEND_CORE_EXPORT GpgError check_gpg_error(GpgError err)
Definition: GpgConstants.cpp:54
GpgFrontend::GpgKeyImportExporter::GpgKeyImportExporter
GpgKeyImportExporter(int channel=SingletonFunctionObject::GetDefaultChannel())
Construct a new Gpg Key Import Exporter object.
Definition: GpgKeyImportExporter.cpp:34
GpgFrontend::SingletonFunctionObject::GetChannel
int GetChannel() const
Get the Channel object.
Definition: GpgFunctionObject.h:239
GpgFrontend::GpgData
Definition: GpgData.h:39
GpgFrontend::GpgContext
Definition: GpgContext.h:59
GpgFrontend::GpgImportedKey
Definition: GpgKeyImportExporter.h:45
GpgFrontend::SingletonFunctionObject::GetDefaultChannel
static int GetDefaultChannel()
Get the Default Channel object.
Definition: GpgFunctionObject.h:232
GpgFrontend::check_gpg_error_2_err_code
GPGFRONTEND_CORE_EXPORT gpg_err_code_t check_gpg_error_2_err_code(gpgme_error_t err, gpgme_error_t predict=GPG_ERR_NO_ERROR)
Definition: GpgConstants.cpp:63
GpgFrontend::GpgData::Read2Buffer
ByteArrayPtr Read2Buffer()
Definition: GpgData.cpp:55
GpgFrontend::GpgKeyImportExporter::ImportKey
GpgImportInformation ImportKey(StdBypeArrayPtr inBuffer)
Definition: GpgKeyImportExporter.cpp:42
GpgFrontend::GpgKeyImportExporter::ExportKeyOpenSSH
bool ExportKeyOpenSSH(const GpgKey &key, ByteArrayPtr &out_buffer) const
Definition: GpgKeyImportExporter.cpp:155
GpgFrontend::GpgKeyImportExporter::ExportSecretKey
bool ExportSecretKey(const GpgKey &key, ByteArrayPtr &outBuffer) const
Definition: GpgKeyImportExporter.cpp:124
GpgFrontend::GpgKeyImportExporter::ExportSecretKeyShortest
bool ExportSecretKeyShortest(const GpgKey &key, ByteArrayPtr &outBuffer) const
Definition: GpgKeyImportExporter.cpp:169
GpgFrontend::GpgKeyGetter::GetKeys
KeyListPtr GetKeys(const KeyIdArgsListPtr &ids)
Get the Keys object.
Definition: GpgKeyGetter.cpp:148
GpgFrontend::GpgImportInformation
Definition: GpgKeyImportExporter.h:57
GpgFrontend::GpgKeyImportExporter
Definition: GpgKeyImportExporter.h:89
GpgFrontend::GpgKey
Definition: GpgKey.h:41
GpgFrontend::GpgKeyImportExporter::ExportKey
bool ExportKey(const GpgKey &key, ByteArrayPtr &out_buffer) const
Definition: GpgKeyImportExporter.cpp:141