Click here to Skip to main content
15,883,818 members
Articles / Desktop Programming / Windows Forms

File Encryption and Decryption in C#

Rate me:
Please Sign up or sign in to vote.
4.19/5 (41 votes)
14 May 2008CPOL1 min read 368.1K   89   46
Demonstrates how to encrypt and decrypt any file type using C#.

Introduction

This article demonstrates how to use C# to encrypt and decrypt files of any type.

Background

Recently, I needed to find a simple way to encrypt and decrypt a file of any type (I actually needed to encrypt image and text files) and any size. I found hundreds of examples on the web, many of which just plain didn't work, or threw errors on certain file types.

Eventually, I put together the following two methods using the Rijndael encryption algorithm. They simply require that you pass them the full path to the original and target files. They both require the use of the System.Security, System.Security.Cryptography, System.Runtime.InteropServices, and System.Text.RegularExpressions namespaces.

Unfortunately, as I looked at so many examples on the web and actually did all this a while ago, I do not remember which bits of code were originally written by who. So, if you recognise some of it, many thanks, leave a comment below so that your work doesn't go unrecognised.

Using the code

There are two methods: encryptFile and decryptFile. They both require that you pass in the filenames and paths of the source and destination files as strings. It is important that the user has the necessary file rights to create the encrypted file.

C#
///<summary>
/// Steve Lydford - 12/05/2008.
///
/// Encrypts a file using Rijndael algorithm.
///</summary>
///<param name="inputFile"></param>
///<param name="outputFile"></param>
private void EncryptFile(string inputFile, string outputFile)
{

    try
    {
        string password = @"myKey123"; // Your Key Here
        UnicodeEncoding UE = new UnicodeEncoding();
        byte[] key = UE.GetBytes(password);

        string cryptFile = outputFile;
        FileStream fsCrypt = new FileStream(cryptFile, FileMode.Create);

        RijndaelManaged RMCrypto = new RijndaelManaged();

        CryptoStream cs = new CryptoStream(fsCrypt,
            RMCrypto.CreateEncryptor(key, key),
            CryptoStreamMode.Write);

        FileStream fsIn = new FileStream(inputFile, FileMode.Open);

        int data;
        while ((data = fsIn.ReadByte()) != -1)
            cs.WriteByte((byte)data);

        
        fsIn.Close();
        cs.Close();
        fsCrypt.Close();
    }
    catch
    {
        MessageBox.Show("Encryption failed!", "Error");
    }
}
///<summary>
/// Steve Lydford - 12/05/2008.
///
/// Decrypts a file using Rijndael algorithm.
///</summary>
///<param name="inputFile"></param>
///<param name="outputFile"></param>
private void DecryptFile(string inputFile, string outputFile)
{

    {
        string password = @"myKey123"; // Your Key Here

        UnicodeEncoding UE = new UnicodeEncoding();
        byte[] key = UE.GetBytes(password);

        FileStream fsCrypt = new FileStream(inputFile, FileMode.Open);

        RijndaelManaged RMCrypto = new RijndaelManaged();

        CryptoStream cs = new CryptoStream(fsCrypt,
            RMCrypto.CreateDecryptor(key, key),
            CryptoStreamMode.Read);

        FileStream fsOut = new FileStream(outputFile, FileMode.Create);

        int data;
        while ((data = cs.ReadByte()) != -1)
            fsOut.WriteByte((byte)data);

        fsOut.Close();
        cs.Close();
        fsCrypt.Close();

    }
}

License

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


Written By
Software Developer (Senior)
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionGetting Error in PDF Files Pin
Jayamanickam30-Dec-19 21:02
Jayamanickam30-Dec-19 21:02 
GeneralVery useful article Pin
Member 1384626017-Jul-19 9:42
Member 1384626017-Jul-19 9:42 
QuestionThanks Pin
Daniel Macias23-Apr-18 6:02
Daniel Macias23-Apr-18 6:02 
QuestionSystem Exception on encryption Pin
Wilbur.S5-Dec-17 13:39
Wilbur.S5-Dec-17 13:39 
QuestionFile Encryption and Decryption in C# Pin
Member 1053416216-Sep-15 3:00
Member 1053416216-Sep-15 3:00 
QuestionUsing the some filepath Pin
Member 114398482-Jun-15 9:42
Member 114398482-Jun-15 9:42 
AnswerRe: Using the some filepath Pin
@cromx15-Jun-15 19:32
@cromx15-Jun-15 19:32 
QuestionDecryption problem Pin
Member 1143778215-Mar-15 21:29
Member 1143778215-Mar-15 21:29 
GeneralMy vote of 5 Pin
mehdi12111-Mar-15 23:26
mehdi12111-Mar-15 23:26 
nice
QuestionProblem with DecryptFile Pin
m.b.v27-Nov-14 3:31
m.b.v27-Nov-14 3:31 
QuestionNice Pin
ezelden.sahi10-Apr-14 0:39
ezelden.sahi10-Apr-14 0:39 
QuestionProvide me the complete application so I can run that Pin
Member 106801324-Apr-14 0:01
Member 106801324-Apr-14 0:01 
GeneralWOW!!!!! MY VOTE OF 5.. Pin
parkavikarthi21-Sep-13 1:22
parkavikarthi21-Sep-13 1:22 
GeneralMy vote of 4 Pin
Amir Mohammad Nasrollahi29-Jul-13 22:19
professionalAmir Mohammad Nasrollahi29-Jul-13 22:19 
GeneralMy vote of 5 Pin
JPFriederich19-Jun-13 0:49
JPFriederich19-Jun-13 0:49 
GeneralMy vote of 3 Pin
B.Farivar27-Apr-13 19:40
B.Farivar27-Apr-13 19:40 
QuestionEncrypion/Decryption Pin
Peter Van Zyl11-Feb-13 2:40
Peter Van Zyl11-Feb-13 2:40 
GeneralThanks Pin
Imteyaz Ahmed3-Sep-12 8:14
Imteyaz Ahmed3-Sep-12 8:14 
GeneralRe: Thanks Pin
Steve Lydford4-Sep-12 5:01
Steve Lydford4-Sep-12 5:01 
QuestionInput and Output files Pin
peek4y1-Jul-12 20:58
peek4y1-Jul-12 20:58 
GeneralMy vote of 4 Pin
kaliprasad12317-Jun-12 21:05
kaliprasad12317-Jun-12 21:05 
GeneralEncryption Pin
Freshino14-May-12 21:56
Freshino14-May-12 21:56 
QuestionError when Encrypting Pin
Member 795084531-Oct-11 4:09
Member 795084531-Oct-11 4:09 
Generalexception [modified] Pin
samson radu11-May-11 3:54
samson radu11-May-11 3:54 
Questionkey length Pin
ale.zad23-Apr-11 3:11
ale.zad23-Apr-11 3:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.