diff options
| author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2013-10-05 07:00:55 -0400 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2013-10-05 07:00:55 -0400 |
| commit | 0e43e5e8f2eddd5768873350d12103f2684bedbf (patch) | |
| tree | e4c49274cd6b1c717366514348ee5ba73b1b1a1c /node/Identity.hpp | |
| parent | b0187f44720fb675b99e6b6e57b660c6dfe8e464 (diff) | |
| download | infinitytier-0e43e5e8f2eddd5768873350d12103f2684bedbf.tar.gz infinitytier-0e43e5e8f2eddd5768873350d12103f2684bedbf.zip | |
Rest of work on new hashcash based identity scheme.
Diffstat (limited to 'node/Identity.hpp')
| -rw-r--r-- | node/Identity.hpp | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/node/Identity.hpp b/node/Identity.hpp index 2c02a5f1..071b0e30 100644 --- a/node/Identity.hpp +++ b/node/Identity.hpp @@ -128,19 +128,11 @@ public: void generate(); /** - * Performs local validation, with two levels available - * - * With the parameter false, this performs self-signature verification - * which checks the basic integrity of the key and identity. Setting the - * parameter to true performs a fairly time consuming computation to - * check that the address was properly derived from the key. This is - * normally not done unless a conflicting identity is received, in - * which case the invalid identity is thrown out. - * - * @param doAddressDerivationCheck If true, do the time-consuming address check + * Check the validity of this identity's pairing of key to address + * * @return True if validation check passes */ - bool locallyValidate(bool doAddressDerivationCheck) const; + bool locallyValidate() const; /** * @return True if this identity contains a private key |
