1
0
mirror of synced 2024-11-18 12:57:12 +01:00
ImHex/include/views/view_hashes.hpp

28 lines
627 B
C++
Raw Normal View History

#pragma once
#include <hex/views/view.hpp>
#include <cstdio>
namespace hex {
2020-11-11 09:28:44 +01:00
namespace prv { class Provider; }
class ViewHashes : public View {
public:
explicit ViewHashes();
2020-11-11 09:28:44 +01:00
~ViewHashes() override;
void drawContent() override;
void drawMenu() override;
private:
bool m_shouldInvalidate = true;
int m_currHashFunction = 0;
u64 m_hashRegion[2] = { 0 };
bool m_shouldMatchSelection = false;
static constexpr const char* HashFunctionNames[] = { "CRC16", "CRC32", "MD5", "SHA-1", "SHA-224", "SHA-256", "SHA-384", "SHA-512" };
};
}