mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 10:52:53 +00:00
42 lines
1.3 KiB
C++
42 lines
1.3 KiB
C++
/*
|
|
* Copyright (C) 2008,2009 Rolf Eike Beer <kde@opensource.sf-tec.de>
|
|
*/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* This program 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. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifndef KGPGCHANGEPASS_H
|
|
#define KGPGCHANGEPASS_H
|
|
|
|
#include <QObject>
|
|
|
|
#include "kgpgtransaction.h"
|
|
|
|
/**
|
|
* @brief set a new passphrase for a key pair
|
|
*/
|
|
class KGpgChangePass: public KGpgTransaction {
|
|
Q_OBJECT
|
|
|
|
Q_DISABLE_COPY(KGpgChangePass)
|
|
public:
|
|
KGpgChangePass(QObject *parent, const QString &keyid);
|
|
virtual ~KGpgChangePass();
|
|
|
|
protected:
|
|
virtual bool nextLine(const QString &line);
|
|
virtual bool preStart();
|
|
virtual bool passphraseRequested();
|
|
virtual bool passphraseReceived();
|
|
|
|
private:
|
|
bool m_seenold; ///< old password correctly entered
|
|
};
|
|
|
|
#endif // KGPGCHANGEPASS_H
|