created setter function for encryptionOperation

This commit is contained in:
Václav Šmejkal 2022-10-17 16:52:09 +02:00
parent 2772a06797
commit 565271f673
No known key found for this signature in database
GPG Key ID: FD749A97DF2D5E19

View File

@ -74,6 +74,11 @@ void setFlags(inputFlags newFlags)
flags = newFlags; flags = newFlags;
} }
void setEncryptionOperation(encryptionOperation_type_cb newEncryptionOperation)
{
encryptionOperation_cb = newEncryptionOperation;
}
//SOME OTHER SHIT //SOME OTHER SHIT
int encryptionOperation(int text, int encryptedText) int encryptionOperation(int text, int encryptedText)
{ {