mirror of
https://bitbucket.org/Mattrixwv/cipherstream.git
synced 2025-12-06 18:33:58 -05:00
Updated some documentation
This commit is contained in:
@@ -45,7 +45,7 @@ void Autokey::encodeSet(std::string key, std::string input){
|
|||||||
input = getInputString();
|
input = getInputString();
|
||||||
key.append(input);
|
key.append(input);
|
||||||
|
|
||||||
///This will take a long time if the keyword in long
|
//This will take a long time if the keyword in long
|
||||||
//Remove the last letter in the string until it is the same size as the input
|
//Remove the last letter in the string until it is the same size as the input
|
||||||
while(key.size() > input.size()){
|
while(key.size() > input.size()){
|
||||||
key.erase(key.end() - 1);
|
key.erase(key.end() - 1);
|
||||||
|
|||||||
Reference in New Issue
Block a user