You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdepim/korn/password.h

169 lines
5.9 KiB

/*
* Copyright (C) 2005, Mart Kelder (mart.kde@hccnet.nl)
*
* 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.
*
* This program 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
*/
#ifndef KORNPASSWORD_H
#define KORNPASSWORD_H
class TDEConfigBase;
namespace TDEWallet { class Wallet; }
class TQString;
/**
* This class can be used to store and retrieve passwords.
* It uses TDEWallet if possible, and the configuartion files otherwise.
*/
class KOrnPassword
{
public:
/**
* Constructor: empty
*/
KOrnPassword();
/**
* Destructor: empty
*/
~KOrnPassword();
/**
* This function gets a password for KOrn.
*
* @param box The boxnumber of the account
* @param account The accountnumber of the account
* @param fallbackConfig The configuration file if TDEWallet cannot be used.
* @return The password, or TQString() if it failes.
*/
static TQString readKOrnPassword( int box, int account, const TDEConfigBase& fallbackConfig );
/**
* This function gets a password with is puts in TDEWallet by KMail
*
* @param accountnr The id of the KMail account
* @param fallbackConfig The configuration used if TDEWallet isn't available.
* @return The password, TQStirng::null if it failes.
*/
static TQString readKMailPassword( int accountnr, const TDEConfigBase& fallbackConfig );
/**
* This function saves a password for usage in KOrn.
*
* @param box The boxnumber of the account.
* @param account The accountnumber of the account.
* @param fallbackConfig The configuration file if TDEWallet isn't available.
* @param password The password to be stored.
*/
static void writeKOrnPassword( int box, int account, TDEConfigBase& fallbackConfig, const TQString& password );
/**
* This function deletes a password from both TDEWallet and the configuration file
*
* @param box The boxnumber of the account.
* @param account The accountnumber of the account.
* @param fallbackConfig The configuration file if TDEWallet isn't available.
*/
static void deleteKOrnPassword( int box, int account, TDEConfigBase& fallbackConfig );
/**
* This function deletes a password from TDEWallet
*
* @param box The boxnumber of the account.
* @param account The accountnumber of the account.
*/
static bool deleteKOrnPassword( int box, int account );
/**
* This function moves a password
*
* @param boxSrc The source box number.
* @param accountSrc The source account number.
* @param configSrc The source configuration group.
* @param boxDest The destination box number.
* @param accountDest The destination account number
* @param configDest The destination configuration group.
*/
static void moveKOrnPassword( int boxSrc, int accountSrc, TDEConfigBase &configSrc,
int boxDest, int accountDest, TDEConfigBase &configDest );
/**
* This swaps the password from one box/account combination to another.
*
* @param box1 The box number of the first password.
* @param account1 The account number of the first password.
* @param config1 The configurationgroup of the first password.
* @param box2 The box number of the second password.
* @param account2 The account number of the second password.
* @param config2 The configurationgroup of the second password.
*/
static void swapKOrnPassword( int box1, int account1, TDEConfigBase &config1, int box2, int account2, TDEConfigBase &config2 );
/**
* This swaps the Wallet password from one box/account combination to another.
*
* @param box1 The box number of the first password.
* @param account1 The number of accounts to be investigated
* @param box2 The box number of the first password.
* @param account2 The number of accounts to be investigated
*/
static void swapKOrnWalletPassword( int box1, int account1 ,int box2, int account2 );
/**
* This swaps the password from one box to another.
*
* @param box1 The box number of the first password.
* @param accountnumber1 The number of accounts to be investigated
* @param box2 The box number of the first password.
* @param accountnumber2 The number of accounts to be investigated
*/
static void swapKOrnWalletPasswords( int box1, int accountnumber1 ,int box2, int accountnumber2 );
/**
* This function read the password from the configuration (wallet or configuration) with UseWallet set to !newUseWalletValue,
* afterwards, it writes the password to the configuration with UseWallet set to newUseWalletValue
*
* @param box The box number
* @param account The account number
* @param config The configuration group
* @param newUseWalletValue true to transport a password from a configuration to a wallet, false the other wat around
*/
static void rewritePassword( int box, int account, TDEConfigBase &config, bool newUseWalletValue );
/**
* If set to true, this class will try to use TDEWallet,
* if false, it will not.
*
* The default value is true.
*
* @param value The value to be set to this property.
*/
static void setUseWallet( const bool value );
private:
static void open();
static bool readKOrnPassword( int box, int account, TQString& password );
static bool writeKOrnPassword( int box, int account, const TQString& password );
static TQString KMailDecrypt( const TQString& enc );
static TDEWallet::Wallet *m_wallet;
static bool m_openFailed;
static bool m_useWallet;
};
#endif //KORNPASSWORD_H