mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 04:52:59 +01:00
bdb50539de
More info regarding KeePass: http://keepass.info/ KeePass integration will use KeePassHttp (https://github.com/pfn/keepasshttp/) to facilitate communications between the client and KeePass. KeePassHttp is a plugin for KeePass 2.x and provides a secure means of exposing KeePass entries via HTTP for clients to consume. The implementation is dependent on the following: - crypter.h for AES encryption helper functions. - rpcprotocol.h for handling RPC communications. Could only be used partially however due some static values in the code. - OpenSSL for base64 encoding. regular util.h libraries were not used for base64 encoding/decoding since they do not use secure allocation. - JSON Spirit for reading / writing RPC communications The following changes were made: - Added CLI options in help - Added RPC commands: keepass <genkey|init|setpassphrase> - Added keepass.h and keepass.cpp which hold the integration routines - Modified rpcwallet.cpp to support RPC commands The following new options are available for darkcoind and darkcoin-qt: -keepass Use KeePass 2 integration using KeePassHttp plugin (default: 0) -keepassport=<port> Connect to KeePassHttp on port <port> (default: 19455) -keepasskey=<key> KeePassHttp key for AES encrypted communication with KeePass -keepassid=<name> KeePassHttp id for the established association -keepassname=<name> Name to construct url for KeePass entry that stores the wallet passphrase The following rpc commands are available: - keepass genkey: generates a base64 encoded 256 bit AES key that can be used for the communication with KeePassHttp. Only necessary for manual configuration. Use init for automatic configuration. - keepass init: sets up the association between darkcoind and keepass by generating an AES key and sending an association message to KeePassHttp. This will trigger KeePass to ask for an Id for the association. Returns the association and the base64 encoded string for the AES key. - keepass setpassphrase <passphrase>: updates the passphrase in KeePassHttp to a new value. This should match the passphrase you intend to use for the wallet. Please note that the standard RPC commands walletpassphrasechange and the wallet encrption from the QT GUI already send the updates to KeePassHttp, so this is only necessary for manual manipulation of the password. Sample initialization flow from darkcoin-qt console (this needs to be done only once to set up the association): - Have KeePass running with an open database - Start darkcoin-qt - Open console - type: "keepass init" in darkcoin-qt console - (keepass pops up and asks for an association id, fill that in). Example: mydrkwallet - response: Association successful. Id: mydrkwalletdarkcoin - Key: AgQkcs6cI7v9tlSYKjG/+s8wJrGALHl3jLosJpPLzUE= - Edit darkcoin.conf and fill in these values keepass=1 keepasskey=AgQkcs6cI7v9tlSYKjG/+s8wJrGALHl3jLosJpPLzUE= keepassid=mydrkwallet keepassname=testwallet - Restart darkcoin-qt At this point, the association is made. The next action depends on your particular situation: - current wallet is not yet encrypted. Encrypting the wallet will trigger the integration and stores the password in KeePass (Under the 'KeePassHttp Passwords' group, named after keepassname. - current wallet is already encrypted: use "keepass setpassphrase <passphrase>" to store the passphrase in KeePass. At this point, the passphrase is stored in KeePassHttp. When Unlocking the wallet, one can use keepass as the passphrase to trigger retrieval of the password. This works from the RPC commands as well as the GUI.
134 lines
3.4 KiB
C++
134 lines
3.4 KiB
C++
// Copyright (c) 2014 The Darkcoin developers
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef _KEEPASS_H_
|
|
#define _KEEPASS_H_
|
|
|
|
#define KEEPASS_CRYPTO_KEY_SIZE 32
|
|
#define KEEPASS_CRYPTO_BLOCK_SIZE 16
|
|
#define KEEPASS_KEEPASSHTTP_HOST "localhost"
|
|
#define KEEPASS_KEEPASSHTTP_PORT 19455
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <map>
|
|
|
|
#include "json/json_spirit_value.h"
|
|
#include "crypter.h"
|
|
#include "allocators.h"
|
|
|
|
class CKeePassIntegrator {
|
|
|
|
bool bIsActive;
|
|
unsigned int nPort;
|
|
SecureString sKeyBase64;
|
|
SecureString sKey;
|
|
SecureString sUrl;
|
|
//SecureString sSubmitUrl;
|
|
std::string sKeePassId;
|
|
std::string sKeePassEntryName;
|
|
|
|
class CKeePassRequest {
|
|
|
|
json_spirit::Object requestObj;
|
|
std::string sType;
|
|
std::string sIV;
|
|
SecureString sKey;
|
|
|
|
void init();
|
|
|
|
public:
|
|
void addStrParameter(std::string sName, std::string sValue); // Regular
|
|
void addStrParameter(std::string sName, SecureString sValue); // Encrypt
|
|
std::string getJson();
|
|
|
|
CKeePassRequest(SecureString sKey, std::string sType)
|
|
{
|
|
this->sKey = sKey;
|
|
this->sType = sType;
|
|
init();
|
|
};
|
|
};
|
|
|
|
|
|
class CKeePassEntry {
|
|
|
|
SecureString uuid;
|
|
SecureString name;
|
|
SecureString login;
|
|
SecureString password;
|
|
|
|
public:
|
|
CKeePassEntry(SecureString uuid, SecureString name, SecureString login, SecureString password) :
|
|
uuid(uuid), name(name), login(login), password(password) {
|
|
}
|
|
|
|
SecureString getUuid() {
|
|
return uuid;
|
|
}
|
|
|
|
SecureString getName() {
|
|
return name;
|
|
}
|
|
|
|
SecureString getLogin() {
|
|
return login;
|
|
}
|
|
|
|
SecureString getPassword() {
|
|
return password;
|
|
}
|
|
|
|
};
|
|
|
|
|
|
class CKeePassResponse {
|
|
|
|
bool bSuccess;
|
|
std::string sType;
|
|
std::string sIV;
|
|
SecureString sKey;
|
|
|
|
void parseResponse(std::string sResponse);
|
|
|
|
public:
|
|
json_spirit::Object responseObj;
|
|
CKeePassResponse(SecureString sKey, std::string sResponse) {
|
|
this->sKey = sKey;
|
|
parseResponse(sResponse);
|
|
}
|
|
|
|
bool getSuccess() {
|
|
return bSuccess;
|
|
}
|
|
|
|
SecureString getSecureStr(std::string sName);
|
|
std::string getStr(std::string sName);
|
|
std::vector<CKeePassEntry> getEntries();
|
|
|
|
SecureString decrypt(std::string sValue); // DecodeBase64 and decrypt arbitrary string value
|
|
|
|
};
|
|
|
|
static SecureString generateRandomKey(size_t nSize);
|
|
static std::string constructHTTPPost(const std::string& strMsg, const std::map<std::string,std::string>& mapRequestHeaders);
|
|
void doHTTPPost(const std::string& sRequest, int& nStatus, std::string& sResponse);
|
|
void rpcTestAssociation(bool bTriggerUnlock);
|
|
std::vector<CKeePassEntry> rpcGetLogins();
|
|
void rpcSetLogin(const SecureString& strWalletPass, const SecureString& sEntryId);
|
|
|
|
public:
|
|
CKeePassIntegrator();
|
|
void init();
|
|
static SecureString generateKeePassKey();
|
|
void rpcAssociate(std::string& sId, SecureString& sKeyBase64);
|
|
SecureString retrievePassphrase();
|
|
void updatePassphrase(const SecureString& sWalletPassphrase);
|
|
|
|
};
|
|
|
|
extern CKeePassIntegrator keePassInt;
|
|
|
|
#endif
|