diff options
Diffstat (limited to 'src/zencore/iohash.cpp')
| -rw-r--r-- | src/zencore/iohash.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/zencore/iohash.cpp b/src/zencore/iohash.cpp index 1bf2c033d..8f3f8da26 100644 --- a/src/zencore/iohash.cpp +++ b/src/zencore/iohash.cpp @@ -12,7 +12,11 @@ namespace zen { -const IoHash IoHash::Zero{}; // Initialized to all zeros +static const uint8_t MaxData[20] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff}; + +const IoHash IoHash::Max = IoHash::MakeFrom(MaxData); // Initialized to all 0xff +const IoHash IoHash::Zero{}; // Initialized to all zeros IoHash IoHash::HashBuffer(const void* data, size_t byteCount) |