fixed invalid unusedKeySize

I put wrong variable as parameter
This commit is contained in:
Václav Šmejkal 2022-05-30 18:04:24 +02:00
parent abbe519ab4
commit 637ee2b842
No known key found for this signature in database
GPG Key ID: FD749A97DF2D5E19

View File

@ -97,7 +97,7 @@ outputFlags decryptText(char *text, char *keyNew, inputFlags flags)
{ {
returningText, //DECRYPTED TEXT returningText, //DECRYPTED TEXT
key, //USED KEY key, //USED KEY
countUnusedKeySize(text, key) countUnusedKeySize(returningText, key)
}; };
//DEALLOCATION //DEALLOCATION