mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 01:14:55 -06:00
commitadd56b5aedAuthor: Tino Reichardt <milky-7zip@mcmilk.de> Date: Thu Nov 1 23:08:00 2018 +0100 Add MD5 hash function commit36a17a5184Author: Tino Reichardt <milky-7zip@mcmilk.de> Date: Sat Nov 3 00:18:33 2018 +0100 Add some hash functions - new: md2, md4, md5, sha384, sha512, xxhash-32, xxhash-64 - put Blake2sp hash stuff back to rar code - added the hashes to GUI and Explorer Menu code commit576c5df947Author: Tino Reichardt <milky-7zip@mcmilk.de> Date: Tue Apr 6 19:35:46 2021 +0200 Add BLAKE3 hash function commit6b2a151549Author: Tino Reichardt <milky-7zip@mcmilk.de> Date: Tue Apr 6 19:51:01 2021 +0200 Remove unneeded file HashesReg.cpp commitdddf507557Author: Tino Reichardt <milky-7zip@mcmilk.de> Date: Sun Jun 18 09:13:59 2023 +0200 Add SHA3 hashing - added these variants: SHA3-256, SHA3-384, SHA3-512 - reordered also the hashing id's - added some notes about them in DOC/Hashes.txt Signed-off-by: Tino Reichardt <milky-7zip@mcmilk.de> The cherry-picking was a chaos; they're not applied in order, and some commits even got cherry-picked twice (1->4->0->2->4->3). So subsequent fixes and adjustments were applied to make it build.
56 lines
939 B
C++
Executable File
56 lines
939 B
C++
Executable File
// CksumReg.cpp
|
|
|
|
#include "StdAfx.h"
|
|
|
|
#include "../../C/CpuArch.h"
|
|
|
|
#include "../Common/MyCom.h"
|
|
|
|
#include "../7zip/Common/RegisterCodec.h"
|
|
#include "../7zip/Compress/BZip2Crc.h"
|
|
|
|
Z7_CLASS_IMP_COM_1(
|
|
CCksumHasher
|
|
, IHasher
|
|
)
|
|
CBZip2Crc _crc;
|
|
UInt64 _size;
|
|
public:
|
|
// Byte _mtDummy[1 << 7];
|
|
CCksumHasher()
|
|
{
|
|
_crc.Init(0);
|
|
_size = 0;
|
|
}
|
|
};
|
|
|
|
Z7_COM7F_IMF2(void, CCksumHasher::Init())
|
|
{
|
|
_crc.Init(0);
|
|
_size = 0;
|
|
}
|
|
|
|
Z7_COM7F_IMF2(void, CCksumHasher::Update(const void *data, UInt32 size))
|
|
{
|
|
_size += size;
|
|
CBZip2Crc crc = _crc;
|
|
for (UInt32 i = 0; i < size; i++)
|
|
crc.UpdateByte(((const Byte *)data)[i]);
|
|
_crc = crc;
|
|
}
|
|
|
|
Z7_COM7F_IMF2(void, CCksumHasher::Final(Byte *digest))
|
|
{
|
|
UInt64 size = _size;
|
|
CBZip2Crc crc = _crc;
|
|
while (size)
|
|
{
|
|
crc.UpdateByte((Byte)size);
|
|
size >>= 8;
|
|
}
|
|
const UInt32 val = crc.GetDigest();
|
|
SetUi32(digest, val)
|
|
}
|
|
|
|
REGISTER_HASHER(CCksumHasher, 0x202, "CKSUM", 4)
|