diff options
| author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2016-08-02 13:36:17 -0700 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2016-08-02 13:36:17 -0700 |
| commit | ecc1324bb0b2435d958947148984a2bd1f630ed7 (patch) | |
| tree | 405459f1dfba3cd2c349aa4eb63f558e8b4d3cea /node/Identity.cpp | |
| parent | d3b0081447940ee3cad4f39bc6e022bd7434402b (diff) | |
| download | infinitytier-ecc1324bb0b2435d958947148984a2bd1f630ed7.tar.gz infinitytier-ecc1324bb0b2435d958947148984a2bd1f630ed7.zip | |
Rules engine work: capability based security model with tags and capabilities, and some cleanup across other places.
Diffstat (limited to 'node/Identity.cpp')
| -rw-r--r-- | node/Identity.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/node/Identity.cpp b/node/Identity.cpp index 6f89a1ee..c47805d9 100644 --- a/node/Identity.cpp +++ b/node/Identity.cpp @@ -133,7 +133,7 @@ std::string Identity::toString(bool includePrivate) const std::string r; r.append(_address.toString()); - r.append(":0:"); // 0 == IDENTITY_TYPE_C25519 + r.append(":0:"); // 0 == ZT_OBJECT_TYPE_IDENTITY r.append(Utils::hex(_publicKey.data,(unsigned int)_publicKey.size())); if ((_privateKey)&&(includePrivate)) { r.push_back(':'); |
