My .NET Core app is having to read files generated by an older application written in .NET Framework 4.6.x. This older application encrypts files using the System.Security.Cryptography.RijndaelManaged implementation. It uses RijndaelManaged.BlockSize = 256.
Turns out .NET Core only supports .BlockSize = 128. Unfortunately, I have no control over the older application (plus there are already a bunch of files that have been generated).
Is there anyway for a .NET Core app to read RijndaelManaged.BlockSize = 256
encrypted files?
Looking at the old application's code, it looks like it's been adapted from here.