Hi,
I am writing a C# class that reads a file and encrypts using Rijndael algorithm.
While testing with a 600MB file, i gets OutOfMemoryException, so planned to read the file in small chunks of 10MB each. Now the problem is that, the decryption process fails for the file whose bytes were encrypted as small chunks.
My question is, whether Rijndael encryption supports encrypting small chunks of data?