Как я могу правильно зашифровать ввод, когда есть пробел?

#include <iostream>
#include <cstring>
#include <string>
//#include <cctype>
using namespace std;

string k;
int key[1024];
int size = 0;
int count = 0;
char text[1024];
char o;

void encrypt(char input[]);
void decrypt(char input[]);

// get arguments from command line
int main(int argc, char *argv[])
{
if(argc >= 3)
{
k = argv[2];
// removing spaces from key
// storing key into char array
for(int i = 0; i < k.length(); i++)
{
if(k.at(i) == ' ')
{
key[i] = k.at(i+1);
i++;
}
else
{
key[i] = k.at(i);
// cout << key[i] << endl;
}

size++;

}
if(strcmp(argv[1], "-e") == 0)
{
// get text from user
// encrypt
cout << "encryption " << endl;
cin.getline(text, sizeof(text));
encrypt(text);
}
else if(strcmp(argv[1], "-d") == 0)
{
// get text from user
// decrypt
cout << "decryption " << endl;
decrypt(text);
}

}

}

void encrypt(char input[])
{
string word = input;
char wkey[word.length()];
// cout << word.length();
for(int i = 0; i < word.length(); count++, i++)
{
// if input is larger than the key
// chars of key will repeat until the size is the length of the input
if(i > size - 1)
{
if(i == size)
{
count = 0;
}
wkey[i] = wkey[count];
}
else
{
wkey[i] = key[i];
}// if input is a space, cout a space
if(input[i] == ' ')
{
cout << " ";

}
// if input is something other than a letter, then just print it out
else if(input[i] < 65 || input[i] > 122 || input[i] > 90 && input[i] < 97)
{
cout << input[i];
}
else
{
// ignoring case of the letters in the key
// give the letters a range of 0-25
if(wkey[i] >= 65 && wkey[i] <= 90)
{
wkey[i]-= 'A';
}
else if(wkey[i] >= 97 && wkey[i] <= 122)
{
wkey[i]-= 'a';
}
//      cout << wkey[i] << endl;

// if input is uppercase, put it in the range of 0-25
// make shift by adding to char in key
// mod by 26 to wrap around
// o is the encrypted character that will be printed
if(input[i] >= 65 && input[i] <= 90)
{
o = ((wkey[i] + (input[i] - 'A')) % 26) + 'A';
}
else if(input[i] >= 97 && input[i] <= 122)
{
o = ((wkey[i] + (input[i] - 'a')) % 26) + 'a';
}
}
cout << o;

}
}

Проблема в том, что у меня проблемы с шифрованием открытого текста, если этот текст содержит пробел. Если текст всего одно слово, то программа работает. В функции шифрования, где я проверяю ввод для пробела, я просто распечатываю пробел, а затем происходит следующая итерация цикла for. Я думаю, что эта проблема возникает, потому что после следующей итерации символ в ключе с тем же индексом, что и пространство на входе, пропускается. Я пытался сделать оператор if для отката к пропущенной букве в ключе, но все равно получаю неправильный вывод. Если бы кто-нибудь мог дать мне несколько советов о том, как решить эту проблему, я был бы очень признателен.

0

Решение

Задача ещё не решена.

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]