summaryrefslogtreecommitdiffstats
path: root/src/lib/util/hash.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/util/hash.h')
-rw-r--r--src/lib/util/hash.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/util/hash.h b/src/lib/util/hash.h
index ec628a949f2..23c8702958e 100644
--- a/src/lib/util/hash.h
+++ b/src/lib/util/hash.h
@@ -75,8 +75,8 @@ public:
bool remove(char type);
// CRC-specific helpers
- bool crc(UINT32 &result) const { result = m_crc32; return m_has_crc32; }
- void add_crc(UINT32 crc) { m_crc32 = crc; m_has_crc32 = true; }
+ bool crc(uint32_t &result) const { result = m_crc32; return m_has_crc32; }
+ void add_crc(uint32_t crc) { m_crc32 = crc; m_has_crc32 = true; }
// SHA1-specific helpers
bool sha1(sha1_t &result) const { result = m_sha1; return m_has_sha1; }
@@ -90,9 +90,9 @@ public:
// creation
void begin(const char *types = nullptr);
- void buffer(const UINT8 *data, UINT32 length);
+ void buffer(const uint8_t *data, uint32_t length);
void end();
- void compute(const UINT8 *data, UINT32 length, const char *types = nullptr) { begin(types); buffer(data, length); end(); }
+ void compute(const uint8_t *data, uint32_t length, const char *types = nullptr) { begin(types); buffer(data, length); end(); }
private:
// internal helpers