mirror of
https://github.com/dashpay/dash.git
synced 2024-12-28 13:32:47 +01:00
8a1ec935a0
* scripted-diff: Replace #include "" with #include <> (ryanofsky) -BEGIN VERIFY SCRIPT- for f in \ src/*.cpp \ src/*.h \ src/bench/*.cpp \ src/bench/*.h \ src/compat/*.cpp \ src/compat/*.h \ src/consensus/*.cpp \ src/consensus/*.h \ src/crypto/*.cpp \ src/crypto/*.h \ src/crypto/ctaes/*.h \ src/policy/*.cpp \ src/policy/*.h \ src/primitives/*.cpp \ src/primitives/*.h \ src/qt/*.cpp \ src/qt/*.h \ src/qt/test/*.cpp \ src/qt/test/*.h \ src/rpc/*.cpp \ src/rpc/*.h \ src/script/*.cpp \ src/script/*.h \ src/support/*.cpp \ src/support/*.h \ src/support/allocators/*.h \ src/test/*.cpp \ src/test/*.h \ src/wallet/*.cpp \ src/wallet/*.h \ src/wallet/test/*.cpp \ src/wallet/test/*.h \ src/zmq/*.cpp \ src/zmq/*.h do base=${f%/*}/ relbase=${base#src/} sed -i "s:#include \"\(.*\)\"\(.*\):if test -e \$base'\\1'; then echo \"#include <\"\$relbase\"\\1>\\2\"; else echo \"#include <\\1>\\2\"; fi:e" $f done -END VERIFY SCRIPT- Signed-off-by: Pasta <pasta@dashboost.org> * scripted-diff: Replace #include "" with #include <> (Dash Specific) -BEGIN VERIFY SCRIPT- for f in \ src/bls/*.cpp \ src/bls/*.h \ src/evo/*.cpp \ src/evo/*.h \ src/governance/*.cpp \ src/governance/*.h \ src/llmq/*.cpp \ src/llmq/*.h \ src/masternode/*.cpp \ src/masternode/*.h \ src/privatesend/*.cpp \ src/privatesend/*.h do base=${f%/*}/ relbase=${base#src/} sed -i "s:#include \"\(.*\)\"\(.*\):if test -e \$base'\\1'; then echo \"#include <\"\$relbase\"\\1>\\2\"; else echo \"#include <\\1>\\2\"; fi:e" $f done -END VERIFY SCRIPT- Signed-off-by: Pasta <pasta@dashboost.org> * build: Remove -I for everything but project root Remove -I from build system for everything but the project root, and built-in dependencies. Signed-off-by: Pasta <pasta@dashboost.org> # Conflicts: # src/Makefile.test.include * qt: refactor: Use absolute include paths in .ui files * qt: refactor: Changes to make include paths absolute This makes all include paths in the GUI absolute. Many changes are involved as every single source file in src/qt/ assumes to be able to use relative includes. Signed-off-by: Pasta <pasta@dashboost.org> # Conflicts: # src/qt/dash.cpp # src/qt/optionsmodel.cpp # src/qt/test/rpcnestedtests.cpp * test: refactor: Use absolute include paths for test data files * Recommend #include<> syntax in developer notes * refactor: Include obj/build.h instead of build.h * END BACKPORT #11651 Remove trailing whitespace causing travis failure * fix backport 11651 Signed-off-by: Pasta <pasta@dashboost.org> * More of 11651 * fix blockchain.cpp Signed-off-by: pasta <pasta@dashboost.org> * Add missing "qt/" in includes * Add missing "test/" in includes * Fix trailing whitespaces Co-authored-by: Wladimir J. van der Laan <laanwj@gmail.com> Co-authored-by: Russell Yanofsky <russ@yanofsky.org> Co-authored-by: MeshCollider <dobsonsa68@gmail.com> Co-authored-by: UdjinM6 <UdjinM6@users.noreply.github.com>
133 lines
3.6 KiB
C++
133 lines
3.6 KiB
C++
// Copyright (c) 2014-2019 The Dash Core 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_
|
|
|
|
#include <support/allocators/secure.h>
|
|
|
|
#include <univalue.h>
|
|
|
|
class CKeePassIntegrator;
|
|
|
|
static const unsigned int DEFAULT_KEEPASS_HTTP_PORT = 19455;
|
|
|
|
extern CKeePassIntegrator keePassInt;
|
|
|
|
class CKeePassIntegrator {
|
|
private:
|
|
static const int KEEPASS_CRYPTO_KEY_SIZE = 32;
|
|
static const int KEEPASS_CRYPTO_BLOCK_SIZE = 16;
|
|
static const int KEEPASS_HTTP_CONNECT_TIMEOUT = 30;
|
|
static const char* KEEPASS_HTTP_HOST;
|
|
|
|
bool bIsActive;
|
|
unsigned int nPort;
|
|
SecureString sKeyBase64;
|
|
SecureString sKey;
|
|
SecureString sUrl;
|
|
//SecureString sSubmitUrl;
|
|
std::string strKeePassId;
|
|
std::string strKeePassEntryName;
|
|
|
|
class CKeePassRequest {
|
|
|
|
UniValue requestObj;
|
|
std::string strType;
|
|
std::string strIV;
|
|
SecureString sKey;
|
|
|
|
void init();
|
|
|
|
public:
|
|
void addStrParameter(const std::string& strName, const std::string& strValue); // Regular
|
|
void addStrParameter(const std::string& strName, const SecureString& sValue); // Encrypt
|
|
std::string getJson();
|
|
|
|
CKeePassRequest(const SecureString& sKey, const std::string& strType)
|
|
{
|
|
this->sKey = sKey;
|
|
this->strType = strType;
|
|
init();
|
|
};
|
|
};
|
|
|
|
|
|
class CKeePassEntry {
|
|
|
|
SecureString sUuid;
|
|
SecureString sName;
|
|
SecureString sLogin;
|
|
SecureString sPassword;
|
|
|
|
public:
|
|
CKeePassEntry(const SecureString& sUuid, const SecureString& sName, const SecureString& sLogin, const SecureString& sPassword) :
|
|
sUuid(sUuid), sName(sName), sLogin(sLogin), sPassword(sPassword) {
|
|
}
|
|
|
|
SecureString getUuid() {
|
|
return sUuid;
|
|
}
|
|
|
|
SecureString getName() {
|
|
return sName;
|
|
}
|
|
|
|
SecureString getLogin() {
|
|
return sLogin;
|
|
}
|
|
|
|
SecureString getPassword() {
|
|
return sPassword;
|
|
}
|
|
|
|
};
|
|
|
|
|
|
class CKeePassResponse {
|
|
|
|
bool bSuccess;
|
|
std::string strType;
|
|
std::string strIV;
|
|
SecureString sKey;
|
|
|
|
void parseResponse(const std::string& strResponse);
|
|
|
|
public:
|
|
UniValue responseObj;
|
|
CKeePassResponse(const SecureString& sKey, const std::string& strResponse) {
|
|
this->sKey = sKey;
|
|
parseResponse(strResponse);
|
|
}
|
|
|
|
bool getSuccess() {
|
|
return bSuccess;
|
|
}
|
|
|
|
SecureString getSecureStr(const std::string& strName);
|
|
std::string getStr(const std::string& strName);
|
|
std::vector<CKeePassEntry> getEntries();
|
|
|
|
SecureString decrypt(const std::string& strValue); // 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& strRequest, int& nStatusRet, std::string& strResponseRet);
|
|
void rpcTestAssociation(bool bTriggerUnlock);
|
|
std::vector<CKeePassEntry> rpcGetLogins();
|
|
void rpcSetLogin(const SecureString& sWalletPass, const SecureString& sEntryId);
|
|
|
|
public:
|
|
CKeePassIntegrator();
|
|
void init();
|
|
static SecureString generateKeePassKey();
|
|
void rpcAssociate(std::string& strIdRet, SecureString& sKeyBase64Ret);
|
|
SecureString retrievePassphrase();
|
|
void updatePassphrase(const SecureString& sWalletPassphrase);
|
|
|
|
};
|
|
|
|
#endif |