1
0
mirror of synced 2024-11-14 19:17:42 +01:00
ImHex/include/views/view_hashes.hpp

28 lines
617 B
C++

#pragma once
#include "views/view.hpp"
#include <cstdio>
#include "providers/provider.hpp"
namespace hex {
class ViewHashes : public View {
public:
ViewHashes(prv::Provider* &dataProvider);
virtual ~ViewHashes();
virtual void createView() override;
virtual void createMenu() override;
private:
prv::Provider* &m_dataProvider;
bool m_windowOpen = true;
int m_currHashFunction = 0;
int m_hashStart = 0, m_hashEnd = 0;
static constexpr const char* HashFunctionNames[] = { "CRC16", "CRC32", "MD5", "SHA-1", "SHA-256" };
};
}