Click here to Skip to main content
15,885,757 members
Articles / Programming Languages / C#

Data Compression and Data Encryption

Rate me:
Please Sign up or sign in to vote.
3.09/5 (11 votes)
10 Aug 2006CPOL1 min read 65.3K   1.3K   32  
Data Compression and Data Encryption
using System;
using System.IO;
using System.IO.Compression;
using System.Collections.Generic;
using System.Text;

namespace Data_Compression_and_Encryption
{
    class compression
    {
     
   
        public static byte[] Compress(byte[] bytData)
        {
            try
            {
                MemoryStream ms = new MemoryStream();
                Stream s = new GZipStream(ms, CompressionMode.Compress);
                s.Write(bytData, 0, bytData.Length);
                s.Close();
                byte[] compressedData = (byte[])ms.ToArray();
                return compressedData;
            }
            catch
            {
                return null;
            }
        }
        public static byte[] DeCompress(byte[] bytInput)
        {
            string strResult="";
            int totalLength = 0;
            byte[] writeData = new byte[4096];
            Stream s2 = new GZipStream(new MemoryStream(bytInput),CompressionMode.Decompress);
            try
            {
                    while (true) 
                     {
                            int size = s2.Read(writeData, 0, writeData.Length);
                        if (size > 0) 
                        {
                            totalLength += size;
                            strResult+=System.Text.Encoding.Unicode.GetString(writeData, 0,size);
                        } 
                        else 
                        {
                            break;
                        }
                    }
                s2.Close();
                return Encoding.Unicode.GetBytes( strResult);
            }
            catch
            {
                return null;
            }
        }

        private static string readfile(string path)
        {
            StreamReader reader = new StreamReader(path);
            string s = reader.ReadToEnd();
            return s;
        }
        private static void makefile(string text,string sd)
        {
            StreamWriter wr = new StreamWriter(@"c:\"+sd);
            wr.Write(text);
            wr.Close();
        }
        public static void test()
        {
            string s = readfile("c:/asd.txt");
            byte[] sb = Encoding.Unicode.GetBytes(s);
            makefile(s,"t");
            //GZipCompressDecompress(sb);
            byte[] comp = Compress(sb);
            string sss = Encoding.ASCII.GetString(comp);
            makefile(sss,"c");            
            int sdfff = sss.Length;
            int dafter = comp.Length;
            byte[] decomp = DeCompress(comp);

            makefile(Encoding.Unicode.GetString(decomp),"d");
            int dret = decomp.Length;
            if (sb == decomp)
                s = "success";
            else
                s = Encoding.Unicode.GetString(decomp);
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Egypt Egypt
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions