diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2012-03-26 16:48:23 +0200 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2012-03-26 16:48:23 +0200 |
commit | 6b8de05d0a6696dff4b7dccec5b74889f3cdc486 (patch) | |
tree | 123b892a842e3a99342cc4806b4a833b2a635b52 /src/keystore.h | |
parent | 01a196e08db49d83cf6c5abd8a799c56dcfef503 (diff) |
Begin doxygen-compatible comments
Diffstat (limited to 'src/keystore.h')
-rw-r--r-- | src/keystore.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/keystore.h b/src/keystore.h index 6757834bd8..c32db2620a 100644 --- a/src/keystore.h +++ b/src/keystore.h @@ -8,7 +8,7 @@ #include "crypter.h" #include "script.h" -// A virtual base class for key stores +/** A virtual base class for key stores */ class CKeyStore { protected: @@ -42,7 +42,7 @@ public: typedef std::map<CBitcoinAddress, std::pair<CSecret, bool> > KeyMap; typedef std::map<uint160, CScript > ScriptMap; -// Basic key store, that keeps keys in an address->secret map +/** Basic key store, that keeps keys in an address->secret map */ class CBasicKeyStore : public CKeyStore { protected: @@ -92,8 +92,9 @@ public: typedef std::map<CBitcoinAddress, std::pair<std::vector<unsigned char>, std::vector<unsigned char> > > CryptedKeyMap; -// Keystore which keeps the private keys encrypted -// It derives from the basic key store, which is used if no encryption is active. +/** Keystore which keeps the private keys encrypted. + * It derives from the basic key store, which is used if no encryption is active. + */ class CCryptoKeyStore : public CBasicKeyStore { private: |