created code for actual text encryption
This commit is contained in:
parent
073b5bd24e
commit
d4d6dac694
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user