I am using decryption of ciphertext using the Rijndael algorithm. Unfortunately, I do not have access to data encryption and they were provided with only a password (for generating key c) and the type of algorithm.
I donβt have salt (everything seems to be in order) and I donβt have IV. Now, my question is: should I have IV to perform decryption? I suspect that the developers who wrote the encryption did not use salt, or IV (if possible).
I tried to set the value of IV to zero, with no luck, and instantiating Rijndael creates a default value of IV, and this distorts the first 16 characters of my plaintext after decryption.
Is there any way to deny the influence of IV? Or do you need to try and understand that IV is used in encryption?
source share