renamed encryptionSeparator to encryption_separator

This commit is contained in:
Václav Šmejkal 2023-02-04 19:16:36 +01:00
parent 7fb6240e8b
commit 5336935713
Signed by: ENGO150
GPG Key ID: 4A57E86482968843

View File

@ -29,7 +29,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
int encryptionOperation(int text, int encryptedText);
//VARIABLES
char encryptionSeparator = '.'; //NOPE > DO NOT TOUCH THIS, USE why2_set_encryption_separator instead <
char encryption_separator = '.'; //NOPE > DO NOT TOUCH THIS, USE why2_set_encryption_separator instead <
unsigned long keyLength = 50; //LENGTH OF KEY > DO NOT TOUCH THIS, USE why2_set_key_length instead <
why2_input_flags flagsAllah = DEFAULT_FLAGS; //IT IS CALLED flagsAllah CUZ flags CAUSED SOME FUCKING MEMORY PROBLEMS
why2_encryption_operation_cb encryptionOperation_cb = encryptionOperation;
@ -159,7 +159,7 @@ void why2_set_encryption_separator(char encryption_separator_new)
{
if (encryptionSeparatorNew <= 31) return;
encryptionSeparator = encryptionSeparatorNew;
encryption_separator = encryption_separator_new;
}
void why2_set_key_length(int keyLengthNew)