mirror of
https://bitbucket.org/Mattrixwv/cipherstream.git
synced 2025-12-06 18:33:58 -05:00
Updated to fix errors with not clearing strings during encoding/decoding
This commit is contained in:
@@ -14,8 +14,8 @@
|
||||
//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
|
||||
void decodeSet(std::string& key, std::string input); //Setting the strings for decoding
|
||||
void encodeSet(std::string key, std::string input); //Special rules for setting the strings for encoding
|
||||
void decodeSet(std::string key, std::string input); //Setting the strings for decoding
|
||||
std::string decode(); //Decodes the inputString
|
||||
public:
|
||||
Autokey();
|
||||
|
||||
Reference in New Issue
Block a user