Are there any compression and encryption libraries in C# ? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T06:53:11Zhttp://stackoverflow.com/feeds/question/71077http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/71077/are-there-any-compression-and-encryption-libraries-in-c3Are there any compression and encryption libraries in C# ? Niyaz2008-09-16T10:36:31Z2008-09-23T19:53:15Z
<p>I want to compress some files (into zip format) and encrypt them if possible using C#. Is there some way to do this?</p>
<p>Can encryption be done as a part of the compression itself?</p>
http://stackoverflow.com/questions/71077/are-there-any-compression-and-encryption-libraries-in-c/71099#7109910Answer by Skizz for Are there any compression and encryption libraries in C# ? Skizz2008-09-16T10:40:07Z2008-09-16T10:40:07Z<p>For compression, look at the <a href="http://msdn.microsoft.com/en-us/library/system.io.compression.aspx" rel="nofollow">System.IO.Compression</a> namespace and for encryption look at <a href="http://msdn.microsoft.com/en-us/library/system.security.cryptography.aspx" rel="nofollow">System.Security.Cryptography</a>.</p>
<p>Skizz</p>
http://stackoverflow.com/questions/71077/are-there-any-compression-and-encryption-libraries-in-c/71101#711010Answer by aku for Are there any compression and encryption libraries in C# ? aku2008-09-16T10:40:31Z2008-09-16T10:40:31Z<p>Here is a useful topic:</p>
<p><a href="http://stackoverflow.com/questions/71000/help-in-creating-zip-files-from-net-and-reading-them-from-java">http://stackoverflow.com/questions/71000/help-in-creating-zip-files-from-net-and-reading-them-from-java</a></p>
<p>System.IO.Packaging namespace gives you useful classes to compress data in zip format and <a href="http://msdn.microsoft.com/en-us/library/ms580548.aspx" rel="nofollow">support</a> rights management.</p>
http://stackoverflow.com/questions/71077/are-there-any-compression-and-encryption-libraries-in-c/71102#711021Answer by Vinko Vrsalovic for Are there any compression and encryption libraries in C# ? Vinko Vrsalovic2008-09-16T10:40:38Z2008-09-16T10:40:38Z<p>The <a href="http://blogs.msdn.com/bclteam/archive/2005/06/15/429542.aspx" rel="nofollow">GZipStream</a> class is a native way to handle compression.</p>
<p>As for encryption, there are <a href="http://www.codeproject.com/KB/security/SimpleEncryption.aspx" rel="nofollow">many</a> <a href="http://www.codeproject.com/KB/security/encryption_decryption.aspx" rel="nofollow">ways</a> to do it, most of them in the System.Security namespace. They can be done chained (encrypt a compressed stream or compress an encrypted stream).</p>
http://stackoverflow.com/questions/71077/are-there-any-compression-and-encryption-libraries-in-c/71103#71103-1Answer by Mark Ingram for Are there any compression and encryption libraries in C# ? Mark Ingram2008-09-16T10:40:50Z2008-09-16T10:40:50Z<p>There isn't anything you can use directly in C#, however you can use some libraries from J# to do it for you:</p>
<p><a href="http://msdn.microsoft.com/en-us/magazine/cc164129.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/magazine/cc164129.aspx</a></p>
<p>Should do just what you want?</p>
<p>With regards to the encryption, have a look at these links:</p>
<p><a href="http://www.codeproject.com/KB/security/fileencryptdecrypt.aspx" rel="nofollow">http://www.codeproject.com/KB/security/fileencryptdecrypt.aspx</a></p>
<p><a href="http://www.obviex.com/samples/EncryptionWithSalt.aspx" rel="nofollow">http://www.obviex.com/samples/EncryptionWithSalt.aspx</a></p>
http://stackoverflow.com/questions/71077/are-there-any-compression-and-encryption-libraries-in-c/71109#711090Answer by Hank Gay for Are there any compression and encryption libraries in C# ? Hank Gay2008-09-16T10:41:37Z2008-09-16T10:41:37Z<p>I'm not sure if the steps can be combined, but .NET has good support for basic crypto. Here's an <a href="http://www.ondotnet.com/pub/a/dotnet/2003/02/10/dotnetcryto.html" rel="nofollow">article on it</a>.</p>
http://stackoverflow.com/questions/71077/are-there-any-compression-and-encryption-libraries-in-c/71155#711556Answer by Prakash for Are there any compression and encryption libraries in C# ? Prakash2008-09-16T10:50:12Z2008-09-16T10:50:12Z<p>For Zip Compression, have you seen <a href="http://www.icsharpcode.net/OpenSource/SharpZipLib/" rel="nofollow">http://www.icsharpcode.net/OpenSource/SharpZipLib/</a></p>
http://stackoverflow.com/questions/71077/are-there-any-compression-and-encryption-libraries-in-c/71292#712920Answer by Rik for Are there any compression and encryption libraries in C# ? Rik2008-09-16T11:13:38Z2008-09-16T11:13:38Z<p>If they cannot be combined, do compression first and then encryption. Compressing an already encrypted file will lead to poor compression ratios, because a lot of redundancy is removed.</p>
http://stackoverflow.com/questions/71077/are-there-any-compression-and-encryption-libraries-in-c/71831#718311Answer by Ian Nelson for Are there any compression and encryption libraries in C# ? Ian Nelson2008-09-16T12:47:52Z2008-09-16T12:47:52Z<p><a href="http://www.chilkatsoft.com/" rel="nofollow">Chilkat</a> provides .NET libraries for compression and encryption.</p>
http://stackoverflow.com/questions/71077/are-there-any-compression-and-encryption-libraries-in-c/123411#1234113Answer by slimCODE for Are there any compression and encryption libraries in C# ? slimCODE2008-09-23T19:53:15Z2008-09-23T19:53:15Z<p>I know the question is already old, but I must add my two cents.</p>
<p>First, some definitions:</p>
<ul>
<li><strong>Zip</strong>: Archive format for regrouping files and folders into a single file, and optionally encrypting data.</li>
<li><strong>Deflate</strong>: One of the compression algorithms used within a Zip file to compress the data. The most popular one.</li>
<li><strong>GZip</strong>: A single file compressed with deflate, with a small header and footer.</li>
</ul>
<p>Now, System.IO.Compression does <strong>not</strong> do Zip archiving. It does <strong>deflate</strong> and <strong>gzip</strong> compression, thus will compress a single blob of data into another single blob of data.</p>
<p>So, if you're looking for an archive format that can group many files and folders, you need Zip libraries like:</p>
<ul>
<li><a href="http://xceed.com" rel="nofollow">Xceed Zip</a> (it does support strong encryption)</li>
<li><a href="http://www.icsharpcode.net/OpenSource/SharpZipLib/" rel="nofollow">SharpZipLib</a></li>
</ul>
<p>If you only need to compress and encrypt a single blob of data, then look under <a href="http://msdn.microsoft.com/en-us/library/system.io.compression.aspx" rel="nofollow">System.IO.Compression</a> and <a href="http://msdn.microsoft.com/en-us/library/system.security.cryptography.aspx" rel="nofollow">System.Security.Cryptography</a>.</p>