diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-02-04 13:51:40 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-02-04 13:56:57 +0100 |
commit | 93b7544501d6154f1d6530b670319d72754636ae (patch) | |
tree | ee6c0993e9f36758c8f4d133c760251e8e035947 /src/crypter.h | |
parent | 31dedb463b0ce77364e516239bf1b9c7eed5b3b0 (diff) | |
parent | 35f7227a860b2b8c273e4bb299e6bd67cfef9a3f (diff) |
Merge pull request #5319
35f7227 Clean up wallet encryption code. (Daniel Kraft)
Diffstat (limited to 'src/crypter.h')
-rw-r--r-- | src/crypter.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/crypter.h b/src/crypter.h index 7b4c2f2613..cbaf1562f0 100644 --- a/src/crypter.h +++ b/src/crypter.h @@ -107,9 +107,6 @@ public: } }; -bool EncryptSecret(const CKeyingMaterial& vMasterKey, const CKeyingMaterial &vchPlaintext, const uint256& nIV, std::vector<unsigned char> &vchCiphertext); -bool DecryptSecret(const CKeyingMaterial& vMasterKey, const std::vector<unsigned char>& vchCiphertext, const uint256& nIV, CKeyingMaterial& vchPlaintext); - /** Keystore which keeps the private keys encrypted. * It derives from the basic key store, which is used if no encryption is active. */ |