From 558fe5861e94c0e84842d25c3104c6fe4c589d26 Mon Sep 17 00:00:00 2001 From: Matthew Ellison Date: Sat, 5 May 2018 16:16:50 -0400 Subject: [PATCH] Added a note for possible future optimization --- Headers/Autokey.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Headers/Autokey.hpp b/Headers/Autokey.hpp index 5b4d953..16a7c03 100644 --- a/Headers/Autokey.hpp +++ b/Headers/Autokey.hpp @@ -11,6 +11,7 @@ #include "Vigenere.hpp" +//TODO: Might be able to make encoding and decoding faster for longer messages by actually using a grid of alphabets (Caesar Ciphers) class Autokey : public Vigenere{ protected: void encodeSet(std::string& key, std::string input); //Special rules for setting the strings for encoding