aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorscatterflower <marisaposs@gameboyprinter.moe>2020-08-21 15:36:31 -0500
committerscatterflower <marisaposs@gameboyprinter.moe>2020-08-21 15:36:31 -0500
commit3f999455a935fd722bb49e3837b6ffb106abf870 (patch)
tree7c27abf04aaea5bce6063d29e93457f5a5318a95 /include
parentc0316ded85bbd2098fd51775632ad4c12be95cb9 (diff)
remove remaining traces of fantacrypt
Diffstat (limited to 'include')
-rw-r--r--include/encryption_functions.h15
-rw-r--r--include/hex_functions.h16
2 files changed, 0 insertions, 31 deletions
diff --git a/include/encryption_functions.h b/include/encryption_functions.h
deleted file mode 100644
index b70e8e65..00000000
--- a/include/encryption_functions.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#ifndef ENCRYPTION_FUNCTIONS_H
-#define ENCRYPTION_FUNCTIONS_H
-
-#include <QString>
-
-#include <QVector>
-#include <cstddef>
-#include <iomanip>
-#include <sstream>
-#include <stdlib.h>
-
-QString fanta_encrypt(QString p_input, unsigned int key);
-QString fanta_decrypt(QString p_input, unsigned int key);
-
-#endif // ENCRYPTION_FUNCTIONS_H
diff --git a/include/hex_functions.h b/include/hex_functions.h
deleted file mode 100644
index d178ba1b..00000000
--- a/include/hex_functions.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#ifndef HEX_OPERATIONS_H
-#define HEX_OPERATIONS_H
-
-#include <algorithm>
-#include <bitset>
-#include <cstdint>
-#include <iomanip>
-#include <iostream>
-#include <sstream>
-#include <string>
-
-namespace omni {
-std::string int_to_hex(unsigned int input);
-}
-
-#endif // HEX_OPERATIONS_H