Working on Issue #5

This commit is contained in:
amazing-username
2017-04-13 11:48:28 -05:00
parent f3800a8d7a
commit c82d81fdc1
3 changed files with 28 additions and 0 deletions
+2
View File
@@ -22,6 +22,7 @@ void GenerateKeys::populateDecryptedValues()
}
}
decryptedCharacters[32] = (char) 32;
decryptedCharacters[10] = (char) 10;
//std::cout << std::endl;
//decryptedCharacters[whiteSpaceCharacter] = ' ';
//std::cout << "Whitespace character" << decryptedCharacters[whiteSpaceCharacter] << "d" << std::endl;
@@ -34,6 +35,7 @@ void GenerateKeys::populateEncryptedValues()
//std::cout << encryptedCharacters[decryptedCharacters[key]] << " ";
}
encryptedCharacters[(char) 32] = 32;
encryptedCharacters[(char) 10] = 10;
//encryptedCharacters[decryptedCharacters[startingCharacter]] = startingCharacter;
//std::cout << std::endl;
}