created code for actual text encryption

This commit is contained in:
Václav Šmejkal 2022-03-07 17:20:50 +01:00
parent 073b5bd24e
commit d4d6dac694

View File

@ -62,6 +62,12 @@ encryptText(char *text)
}
}
//ACTUALLY ENCRYPT TEXT
for (int i = 0; i < strlen(text); i++)
{
textKeyChain[i] -= (int) text[i];
}
numberBuffer = 0;
//COUNT REQUIRED SIZE FOR returningText