I need to encrypt a lot of large JPEG files.
The pictures are very sensitive and need to only be decrypted inside my application.
Because of the number and size of the images, speed is an issue.
I need to encrypt a lot of large JPEG files.
The pictures are very sensitive and need to only be decrypted inside my application.
Because of the number and size of the images, speed is an issue.
It really doesn't matter what format your files are - you can encrypt any byte sequence.
Read the documentation on, say, TripleDESCryptoServiceProvider and that will provide you with all the tools you need to encrypt anything.
Of course, if TripleDES
is too slow for you, you can try a weaker algorithm. But, honestly, you usually trade speed for security in these matters.