2020-11-10 23:13:09 +00:00
|
|
|
#pragma once
|
|
|
|
|
2022-02-01 17:09:40 +00:00
|
|
|
#include <hex/ui/view.hpp>
|
2020-11-10 23:13:09 +00:00
|
|
|
|
2021-10-26 15:21:48 +00:00
|
|
|
#include <array>
|
|
|
|
#include <utility>
|
2020-11-10 23:13:09 +00:00
|
|
|
#include <cstdio>
|
|
|
|
|
2021-12-07 21:47:41 +00:00
|
|
|
namespace hex::plugin::builtin {
|
2020-11-10 23:13:09 +00:00
|
|
|
|
|
|
|
class ViewHashes : public View {
|
|
|
|
public:
|
2020-12-27 14:39:06 +00:00
|
|
|
explicit ViewHashes();
|
2020-11-11 08:28:44 +00:00
|
|
|
~ViewHashes() override;
|
2020-11-10 23:13:09 +00:00
|
|
|
|
2020-12-22 17:10:01 +00:00
|
|
|
void drawContent() override;
|
2020-11-10 23:13:09 +00:00
|
|
|
|
|
|
|
private:
|
2022-03-04 19:52:39 +00:00
|
|
|
enum class HashFunctions
|
|
|
|
{
|
2022-01-24 19:53:17 +00:00
|
|
|
Crc8,
|
|
|
|
Crc16,
|
|
|
|
Crc32,
|
|
|
|
Md5,
|
|
|
|
Sha1,
|
|
|
|
Sha224,
|
|
|
|
Sha256,
|
|
|
|
Sha384,
|
|
|
|
Sha512
|
|
|
|
};
|
2021-10-26 15:21:48 +00:00
|
|
|
|
2022-02-01 21:09:44 +00:00
|
|
|
bool m_shouldInvalidate = true;
|
|
|
|
int m_currHashFunction = 0;
|
|
|
|
u64 m_hashRegion[2] = { 0 };
|
2020-11-28 14:53:11 +00:00
|
|
|
bool m_shouldMatchSelection = false;
|
|
|
|
|
2021-10-26 15:21:48 +00:00
|
|
|
static constexpr std::array hashFunctionNames {
|
2022-01-24 19:53:17 +00:00
|
|
|
std::pair {HashFunctions::Crc8, "CRC8" },
|
|
|
|
std::pair { HashFunctions::Crc16, "CRC16" },
|
|
|
|
std::pair { HashFunctions::Crc32, "CRC32" },
|
|
|
|
std::pair { HashFunctions::Md5, "MD5" },
|
|
|
|
std::pair { HashFunctions::Sha1, "SHA-1" },
|
|
|
|
std::pair { HashFunctions::Sha224, "SHA-224"},
|
|
|
|
std::pair { HashFunctions::Sha256, "SHA-256"},
|
|
|
|
std::pair { HashFunctions::Sha384, "SHA-384"},
|
|
|
|
std::pair { HashFunctions::Sha512, "SHA-512"},
|
2021-10-26 15:21:48 +00:00
|
|
|
};
|
2020-11-10 23:13:09 +00:00
|
|
|
};
|
|
|
|
|
2021-10-26 15:21:48 +00:00
|
|
|
}
|