diff options
Diffstat (limited to 'src/crypter.h')
-rw-r--r-- | src/crypter.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/crypter.h b/src/crypter.h index 9b592dbcdc..59efc76508 100644 --- a/src/crypter.h +++ b/src/crypter.h @@ -43,14 +43,17 @@ public: // such as the various parameters to scrypt std::vector<unsigned char> vchOtherDerivationParameters; - IMPLEMENT_SERIALIZE - ( + IMPLEMENT_SERIALIZE; + + template <typename Stream, typename Operation> + inline void SerializationOp(Stream& s, Operation ser_action, int nType, int nVersion) { READWRITE(vchCryptedKey); READWRITE(vchSalt); READWRITE(nDerivationMethod); READWRITE(nDeriveIterations); READWRITE(vchOtherDerivationParameters); - ) + } + CMasterKey() { // 25000 rounds is just under 0.1 seconds on a 1.86 GHz Pentium M |