mirror of
https://bitbucket.org/Mattrixwv/cipherstream.git
synced 2025-12-06 18:33:58 -05:00
Changed member access to help Autokey
This commit is contained in:
@@ -13,7 +13,7 @@
|
|||||||
|
|
||||||
///TODO: Might be able to make encoding and decoding faster for longer messages by actually using a grid of alphabets (Caesar Ciphers)
|
///TODO: Might be able to make encoding and decoding faster for longer messages by actually using a grid of alphabets (Caesar Ciphers)
|
||||||
class Vigenere{
|
class Vigenere{
|
||||||
private:
|
protected:
|
||||||
std::string inputString; //This is the string that you want to encode or decode
|
std::string inputString; //This is the string that you want to encode or decode
|
||||||
std::string outputString; //This is the string that is output from encoding or decoding
|
std::string outputString; //This is the string that is output from encoding or decoding
|
||||||
std::string keyword; //This is the keyword that is the resposible for determining the offsets that you change each character by
|
std::string keyword; //This is the keyword that is the resposible for determining the offsets that you change each character by
|
||||||
|
|||||||
Reference in New Issue
Block a user