I have a question about IV in Rijndael encryption.
My current approach of using Rijndael is to use a pair of static Key
and Iv
for all encryption operations (I mean I use this pair of Key and Iv for all protected files in my computer).
I heard that IV must be unique
for each Rijndael encryption. Is that true? What is the problem (if any) for my current approach of using single static Key and Iv pair
?