X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=blobdiff_plain;f=src%2Fkeystore.h;h=21930603f7705e39a7b157b1f87249ca30e73789;hp=7d49735db9d22bdaedbb572f09376ad5acdbabf9;hb=7f70ddc68f4afa4a87a15e620ba519afbc5c8b15;hpb=fe0f38a9dd454d2847bedc08c2bcad720b36116c diff --git a/src/keystore.h b/src/keystore.h index 7d49735..2193060 100644 --- a/src/keystore.h +++ b/src/keystore.h @@ -39,6 +39,10 @@ public: // Add a key to the store. virtual bool AddKey(const CKey& key) =0; + // Add a malleable key to store. + virtual bool AddMalleableKey(const CMalleableKey& mKey) =0; + virtual bool GetMalleableKey(const CMalleableKeyView &keyView, CMalleableKey &mKey) const =0; + // Check whether a key corresponding to a given address is present in the store. virtual bool HaveKey(const CKeyID &address) const =0; virtual bool GetKey(const CKeyID &address, CKey& keyOut) const =0; @@ -67,7 +71,7 @@ public: virtual bool CheckOwnership(const CPubKey &pubKeyVariant, const CPubKey &R) const =0; virtual bool CreatePrivKey(const CPubKey &pubKeyVariant, const CPubKey &R, CKey &privKey) const =0; - virtual void ListMalleablePubKeys(std::list &malleablePubKeyList) const =0; + virtual void ListMalleableViews(std::list &malleableViewList) const =0; }; typedef std::map > KeyMap; @@ -87,6 +91,21 @@ protected: public: bool AddKey(const CKey& key); + bool AddMalleableKey(const CMalleableKey& mKey); + bool GetMalleableKey(const CMalleableKeyView &keyView, CMalleableKey &mKey) const + { + { + LOCK(cs_KeyStore); + MalleableKeyMap::const_iterator mi = mapMalleableKeys.find(keyView); + if (mi != mapMalleableKeys.end()) + { + mKey = mi->second; + return true; + } + } + return false; + } + bool HaveKey(const CKeyID &address) const { bool result; @@ -158,14 +177,14 @@ public: return false; } - void ListMalleablePubKeys(std::list &malleablePubKeyList) const + void ListMalleableViews(std::list &malleableViewList) const { - malleablePubKeyList.clear(); + malleableViewList.clear(); { LOCK(cs_KeyStore); for (MalleableKeyMap::const_iterator mi = mapMalleableKeys.begin(); mi != mapMalleableKeys.end(); mi++) - malleablePubKeyList.push_back(mi->first.GetMalleablePubKey()); + malleableViewList.push_back(CMalleableKeyView(mi->first)); } } }; @@ -196,7 +215,7 @@ protected: bool Unlock(const CKeyingMaterial& vMasterKeyIn); public: - CCryptoKeyStore(); + CCryptoKeyStore() : fUseCrypto(false) { } bool IsCrypted() const {