2020-11-10 23:13:09 +00:00
|
|
|
#pragma once
|
|
|
|
|
2021-01-13 16:28:27 +00:00
|
|
|
#include <hex/views/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>
|
|
|
|
|
|
|
|
namespace hex {
|
|
|
|
|
2020-11-11 08:28:44 +00:00
|
|
|
namespace prv { class Provider; }
|
|
|
|
|
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;
|
|
|
|
void drawMenu() override;
|
2020-11-10 23:13:09 +00:00
|
|
|
|
|
|
|
private:
|
2021-10-26 15:21:48 +00:00
|
|
|
enum class HashFunctions { Crc8, Crc16, Crc32, Md5, Sha1, Sha224, Sha256, Sha384, Sha512 };
|
|
|
|
|
2020-11-12 08:38:52 +00:00
|
|
|
bool m_shouldInvalidate = true;
|
2020-11-10 23:13:09 +00:00
|
|
|
int m_currHashFunction = 0;
|
2020-11-28 14:53:11 +00:00
|
|
|
u64 m_hashRegion[2] = { 0 };
|
|
|
|
bool m_shouldMatchSelection = false;
|
|
|
|
|
2021-10-26 15:21:48 +00:00
|
|
|
static constexpr std::array hashFunctionNames {
|
|
|
|
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"},
|
|
|
|
};
|
2020-11-10 23:13:09 +00:00
|
|
|
};
|
|
|
|
|
2021-10-26 15:21:48 +00:00
|
|
|
}
|