created callback for encryptionOperation
This commit is contained in:
parent
e4c5feedb4
commit
04856bb9f6
@ -5,10 +5,13 @@
|
|||||||
//CONSTS (this is just local)
|
//CONSTS (this is just local)
|
||||||
#define DEFAULT_FLAGS (inputFlags) { 0, 0, 0 }
|
#define DEFAULT_FLAGS (inputFlags) { 0, 0, 0 }
|
||||||
|
|
||||||
|
int encryptionOperation(int text, int encryptedText);
|
||||||
|
|
||||||
//VARIABLES
|
//VARIABLES
|
||||||
char encryptionSeparator = '.'; //NOPE > DO NOT TOUCH THIS, USE setEncryptionSeparator instead <
|
char encryptionSeparator = '.'; //NOPE > DO NOT TOUCH THIS, USE setEncryptionSeparator instead <
|
||||||
unsigned long keyLength = 50; //LENGTH OF KEY > DO NOT TOUCH THIS, USE setKeyLength instead <
|
unsigned long keyLength = 50; //LENGTH OF KEY > DO NOT TOUCH THIS, USE setKeyLength instead <
|
||||||
inputFlags flags = DEFAULT_FLAGS;
|
inputFlags flags = DEFAULT_FLAGS;
|
||||||
|
int (*encryptionOperation_cb)(int, int) = encryptionOperation;
|
||||||
|
|
||||||
//GETTERS
|
//GETTERS
|
||||||
char getEncryptionSeparator()
|
char getEncryptionSeparator()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user