aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2018-05-08 17:53:10 +0200
committerdec05eba <dec05eba@protonmail.com>2020-08-18 23:25:46 +0200
commitc6c1b5217a48b60018bbd468b57cbcac600ec0ed (patch)
treec6ac9406b3a96e7bcc463b46b264e3a1e94c422d /src
parent31295f7da843f8e32f1dbdb7c3b552bb7e2f12b2 (diff)
Add more comparison functions to hash
Diffstat (limited to 'src')
-rw-r--r--src/Hash.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/Hash.cpp b/src/Hash.cpp
index 364cddd..4b045a4 100644
--- a/src/Hash.cpp
+++ b/src/Hash.cpp
@@ -17,6 +17,8 @@ namespace odhtdb
static SodiumInitializer __sodiumInitializer;
+ static const Hash EMPTY_HASH;
+
Hash::Hash()
{
memset(data, 0, HASH_BYTE_SIZE);
@@ -44,8 +46,18 @@ namespace odhtdb
return memcmp(data, other.data, HASH_BYTE_SIZE) == 0;
}
+ bool Hash::operator!=(const Hash &other) const
+ {
+ return !operator==(other);
+ }
+
std::string Hash::toString() const
{
return bin2hex(data, HASH_BYTE_SIZE);
}
+
+ bool Hash::isEmpty() const
+ {
+ return *this == EMPTY_HASH;
+ }
}