Link to home
Start Free TrialLog in
Avatar of BlearyEye
BlearyEyeFlag for United States of America

asked on

.net encryption class for large files

disclaimer: I'm modestly familiar with .net and somewhat familiar with encryption. I'm working on a .net project that requires large-ish files (up to 5gb) to be encrypted. The encryption classes I've found so far either work in memory (and hence get out-of-memory exceptions) or come with license fees that would be awkward to deal with.

Is there any encryption class that's efficient with large files and is open-source or otherwise free?

Thanks, Bill
ASKER CERTIFIED SOLUTION
Avatar of JimBrandley
JimBrandley
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Have you tried using DES, Rijndael.code samples??Symmentric keys are always good for encrypting large files
Jim, Thats a cool thing. I was thinking about streams but didnt know there was a crypto stream
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of BlearyEye

ASKER

Perfect, thanks. Bill