Implemented hash view with CRC16, CRC32 and MD5 support

More to come
This commit is contained in:
WerWolv
2020-11-11 00:13:09 +01:00
parent 72c602ca55
commit c87bc6aebe
6 changed files with 291 additions and 9 deletions

View File

@@ -4,6 +4,7 @@
#include "views/view_hexeditor.hpp"
#include "views/view_pattern.hpp"
#include "views/view_pattern_data.hpp"
#include "views/view_hashes.hpp"
#include <tuple>
#include <vector>
@@ -19,6 +20,7 @@ int main() {
window.addView<hex::ViewHexEditor>(file, highlights);
window.addView<hex::ViewPattern>(highlights);
window.addView<hex::ViewPatternData>(file, highlights);
window.addView<hex::ViewHashes>(file);
window.loop();