aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorscatterflower <marisaposs@gameboyprinter.moe>2020-08-21 15:30:54 -0500
committerscatterflower <marisaposs@gameboyprinter.moe>2020-08-21 15:30:54 -0500
commitc0316ded85bbd2098fd51775632ad4c12be95cb9 (patch)
treecb8f0698751d24f1c31d0f7d1a83f1bcee6b7e50 /include
parent2c6a690d47ca0c48bef84b3d28d58064365a9934 (diff)
remove fantacrypt
Diffstat (limited to 'include')
-rw-r--r--include/aoapplication.h3
-rw-r--r--include/aopacket.h4
2 files changed, 0 insertions, 7 deletions
diff --git a/include/aoapplication.h b/include/aoapplication.h
index 60d945ec..dccc85ea 100644
--- a/include/aoapplication.h
+++ b/include/aoapplication.h
@@ -63,9 +63,6 @@ public:
/////////////////server metadata//////////////////
- unsigned int s_decryptor = 5;
- bool encryption_needed = true;
-
bool yellow_text_enabled = false;
bool prezoom_enabled = false;
bool flipping_enabled = false;
diff --git a/include/aopacket.h b/include/aopacket.h
index 4097be86..e6369982 100644
--- a/include/aopacket.h
+++ b/include/aopacket.h
@@ -15,14 +15,10 @@ public:
QStringList &get_contents() { return m_contents; }
QString to_string();
- void encrypt_header(unsigned int p_key);
- void decrypt_header(unsigned int p_key);
-
void net_encode();
void net_decode();
private:
- bool encrypted = false;
QString m_header;
QStringList m_contents;