mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-04-02 05:27:41 -05:00
fix: CRC64 parameters being limited to 32bit (#1975)
This addresses #1974
This commit is contained in:
@@ -219,9 +219,9 @@ namespace hex::plugin::hashes {
|
||||
size_t m_selectedCrc = 0;
|
||||
|
||||
u32 m_width = 3;
|
||||
u32 m_polynomial = 0;
|
||||
u32 m_initialValue = 0;
|
||||
u32 m_xorOut = 0;
|
||||
u64 m_polynomial = 0;
|
||||
u64 m_initialValue = 0;
|
||||
u64 m_xorOut = 0;
|
||||
bool m_reflectIn = false, m_reflectOut = false;
|
||||
};
|
||||
|
||||
@@ -731,4 +731,4 @@ namespace hex::plugin::hashes {
|
||||
ContentRegistry::Hashes::add<HashWithKey>(HashFactory::Hash128::CreateMurmurHash3_x64_128);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user