Page Menu
Home
GnuPG
Search
Configure Global Search
Log In
Files
F23020923
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Size
8 KB
Subscribers
None
View Options
diff --git a/commands/exportsecretkeycommand.cpp b/commands/exportsecretkeycommand.cpp
index 882c22e39..d1600d125 100644
--- a/commands/exportsecretkeycommand.cpp
+++ b/commands/exportsecretkeycommand.cpp
@@ -1,148 +1,154 @@
/* -*- mode: c++; c-basic-offset:4 -*-
commands/exportsecretkeycommand.cpp
This file is part of Kleopatra, the KDE keymanager
Copyright (c) 2008 Klarälvdalens Datakonsult AB
Kleopatra 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.
Kleopatra 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 this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
In addition, as a special exception, the copyright holders give
permission to link the code of this program with any edition of
the Qt library by Trolltech AS, Norway (or with modified versions
of Qt that use the same license as Qt), and distribute linked
combinations including the two. You must obey the GNU General
Public License in all respects for all of the code used other than
Qt. If you modify this file, you may extend this exception to
your version of the file, but you are not obligated to do so. If
you do not wish to do so, delete this exception statement from
your version.
*/
#include <config-kleopatra.h>
#include "exportsecretkeycommand.h"
#include "command_p.h"
#include <dialogs/exportsecretkeydialog.h>
#include <utils/gnupg-helper.h>
#include <gpgme++/key.h>
#include <KLocale>
#include <KMessageBox>
using namespace Kleo;
using namespace Kleo::Commands;
using namespace Kleo::Dialogs;
using namespace GpgME;
ExportSecretKeyCommand::ExportSecretKeyCommand( KeyListController * c )
: GnuPGProcessCommand( c )
{
}
ExportSecretKeyCommand::ExportSecretKeyCommand( QAbstractItemView * v, KeyListController * c )
: GnuPGProcessCommand( v, c )
{
}
+ExportSecretKeyCommand::ExportSecretKeyCommand( const Key & key )
+ : GnuPGProcessCommand( key )
+{
+
+}
+
ExportSecretKeyCommand::~ExportSecretKeyCommand() {}
void ExportSecretKeyCommand::setFileName( const QString & fileName ) {
m_filename = fileName;
}
void ExportSecretKeyCommand::setPassphraseCharset( const QByteArray & charset ) {
m_charset = charset;
}
void ExportSecretKeyCommand::setUseArmor( bool armor ) {
m_armor = armor;
}
bool ExportSecretKeyCommand::preStartHook( QWidget * parent ) const {
if ( !m_filename.isEmpty() )
return true;
ExportSecretKeyDialog dlg( parent );
dlg.setKey( d->key() );
if ( !dlg.exec() )
return false;
m_filename = dlg.fileName();
m_armor = dlg.useArmor();
m_charset = dlg.charset();
return true;
}
QStringList ExportSecretKeyCommand::arguments() const {
const Key key = d->key();
QStringList result;
if ( key.protocol() == OpenPGP )
result << gpgPath();
else
result << gpgSmPath();
result << "--output" << m_filename;
if ( m_armor )
result << "--armor";
if ( key.protocol() == CMS && !m_charset.isEmpty() )
result << "--p12-charset" << m_charset;
if ( key.protocol() == OpenPGP )
result << "--export-secret-key";
else
result << "--export-secret-key-p12";
result << key.primaryFingerprint();
return result;
}
QString ExportSecretKeyCommand::errorCaption() const {
return i18n( "Secret Key Export Error" );
}
QString ExportSecretKeyCommand::successCaption() const {
return i18n( "Secret Key Export Finished" );
}
QString ExportSecretKeyCommand::crashExitMessage( const QStringList & args ) const {
return i18nc("@info",
"<para>The GPG or GpgSM process that tried to export the secret key "
"ended prematurely because of an unexpected error.</para>"
"<para>Please check the output of <icode>%1</icode> for details.</para>", args.join( " " ) ) ;
}
QString ExportSecretKeyCommand::errorExitMessage( const QStringList & args ) const {
return i18nc("@info",
"<para>An error occurred while trying to export the secret key.</para> "
"<para>The output from <command>%1</command> was: <message>%2</message></para>",
args[0], errorString() );
}
QString ExportSecretKeyCommand::successMessage( const QStringList & ) const {
return i18n( "Secret key successfully exported." );
}
#include "moc_exportsecretkeycommand.cpp"
diff --git a/commands/exportsecretkeycommand.h b/commands/exportsecretkeycommand.h
index ca469d027..7843881ca 100644
--- a/commands/exportsecretkeycommand.h
+++ b/commands/exportsecretkeycommand.h
@@ -1,83 +1,84 @@
/* -*- mode: c++; c-basic-offset:4 -*-
commands/exportsecretkeycommand.h
This file is part of Kleopatra, the KDE keymanager
Copyright (c) 2008 Klarälvdalens Datakonsult AB
Kleopatra 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.
Kleopatra 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 this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
In addition, as a special exception, the copyright holders give
permission to link the code of this program with any edition of
the Qt library by Trolltech AS, Norway (or with modified versions
of Qt that use the same license as Qt), and distribute linked
combinations including the two. You must obey the GNU General
Public License in all respects for all of the code used other than
Qt. If you modify this file, you may extend this exception to
your version of the file, but you are not obligated to do so. If
you do not wish to do so, delete this exception statement from
your version.
*/
#ifndef __KLEOPATRA_COMMMANDS_EXPORTSECRETKEYCOMMAND_H__
#define __KLEOPATRA_COMMMANDS_EXPORTSECRETKEYCOMMAND_H__
#include <commands/gnupgprocesscommand.h>
#include <QString>
#include <QByteArray>
namespace Kleo {
namespace Commands {
class ExportSecretKeyCommand : public GnuPGProcessCommand {
Q_OBJECT
public:
explicit ExportSecretKeyCommand( QAbstractItemView * view, KeyListController * parent );
explicit ExportSecretKeyCommand( KeyListController * parent );
+ explicit ExportSecretKeyCommand( const GpgME::Key & key );
~ExportSecretKeyCommand();
void setFileName( const QString & fileName );
QString fileName() const { return m_filename; }
void setPassphraseCharset( const QByteArray & charset );
QByteArray passphraseCharset() const { return m_charset; }
void setUseArmor( bool armor );
bool useArmor() const { return m_armor; }
/* reimp */ static Restrictions restrictions() { return OnlyOneKey|NeedSecretKey; }
private:
/* reimp */ bool preStartHook( QWidget * ) const;
/* reimp */ QStringList arguments() const;
/* reimp */ QString errorCaption() const;
/* reimp */ QString successCaption() const;
/* reimp */ QString crashExitMessage( const QStringList & ) const;
/* reimp */ QString errorExitMessage( const QStringList & ) const;
/* reimp */ QString successMessage( const QStringList & ) const;
private:
mutable QString m_filename;
mutable QByteArray m_charset;
mutable bool m_armor;
};
}
}
#endif // __KLEOPATRA_COMMMANDS_EXPORTSECRETKEYCOMMAND_H__
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Mon, May 12, 6:52 PM (16 h, 27 s)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
5c/1e/b38421d1d5054a088cad91694faa
Attached To
rKLEOPATRA Kleopatra
Event Timeline
Log In to Comment