summaryrefslogtreecommitdiff
path: root/node/Utils.hpp
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2013-09-16 13:02:10 -0400
committerAdam Ierymenko <adam.ierymenko@gmail.com>2013-09-16 13:02:10 -0400
commitceb024ab03a114c8dadbbd393032231069981c45 (patch)
tree7ff0045410d1c8faf2e98b20632fad173ef603a9 /node/Utils.hpp
parent3b2d98e7dcf4102f855006cc9f5d5000d8df0223 (diff)
downloadinfinitytier-ceb024ab03a114c8dadbbd393032231069981c45.tar.gz
infinitytier-ceb024ab03a114c8dadbbd393032231069981c45.zip
Integrating new crypto, work still in progress...
Diffstat (limited to 'node/Utils.hpp')
-rw-r--r--node/Utils.hpp29
1 files changed, 3 insertions, 26 deletions
diff --git a/node/Utils.hpp b/node/Utils.hpp
index 627a6628..b214c78c 100644
--- a/node/Utils.hpp
+++ b/node/Utils.hpp
@@ -87,13 +87,8 @@ public:
p2 += 8;
len -= 8;
}
-
- while (len) {
- diff |= (uint64_t)(*p1 ^ *p2);
- ++p1;
- ++p2;
- --len;
- }
+ while (len--)
+ diff |= (uint64_t)(*p1++ ^ *p2++);
return (diff == 0ULL);
}
@@ -450,22 +445,6 @@ public:
}
/**
- * @param data Binary data to encode
- * @param len Length of data
- * @return Base64-encoded string
- */
- static std::string base64Encode(const void *data,unsigned int len);
- inline static std::string base64Encode(const std::string &data) { return base64Encode(data.data(),(unsigned int)data.length()); }
-
- /**
- * @param data Base64-encoded string
- * @param len Length of encoded string
- * @return Decoded binary date
- */
- static std::string base64Decode(const char *data,unsigned int len);
- inline static std::string base64Decode(const std::string &data) { return base64Decode(data.data(),(unsigned int)data.length()); }
-
- /**
* Split a string by delimiter, with optional escape and quote characters
*
* @param s String to split
@@ -477,7 +456,7 @@ public:
static std::vector<std::string> split(const char *s,const char *const sep,const char *esc,const char *quot);
/**
- * Tokenize a string
+ * Tokenize a string (alias for strtok_r or strtok_s depending on platform)
*
* @param str String to split
* @param delim Delimiters
@@ -772,8 +751,6 @@ public:
private:
static const uint64_t crc64Table[256];
- static const char base64EncMap[64];
- static const char base64DecMap[128];
};
} // namespace ZeroTier