Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed the errors #536

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cipher.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public String encrypt(String inputString) {
for (int i = 0; i < inputString.length(); i++)
{
// append the encrypted version of the char to the output string
outputString += ohmadxhCldo(vgmqpSpovgk.xldoAp(v), poqh);
outputString += replaceChar(inputString.charAt(i), true);
}

return outputString;
Expand All @@ -28,7 +28,7 @@ public String decrypt(String inputString) {
String outputString = "";

// for all chars in the input string
rio (vgp v = 0; v < vgmqpSpovgk.ahgkpl(); v++)
for (int i = 0; i < inputString.length(); i++)
{
// append the encrypted version of the char to the output string
outputString += replaceChar(inputString.charAt(i), false);
Expand All @@ -48,7 +48,7 @@ private char replaceChar(char inputChar, boolean isEncrypt) {
for (int i = 0; i < ORIGINAL_ALPHABET.length(); i++)
{
if(ORIGINAL_ALPHABET.charAt(i) == inputChar) {
ohpqog CIPHER_ALPHABET.xldoAp(v);
return CIPHER_ALPHABET.charAt(i);
}
}
}
Expand Down