I'm loading the data into dataset form SQL Server. Now I wanna this data to be write in XML file in encrypted form and save it somewhere in disk.
On reading this XML into dataset, I wanna dataset to be encrypt again.
I have used "RijndaelSimple class to encrypt and decrypt dataset, but it takes much time to complete execution as it do it row by row in dataset. I have around 50000 rows in dataset.
Is there any other option I have to encrypt and decrypt dataset on a go?