Click here to Skip to main content
15,881,173 members
Articles / Programming Languages / XML

P2P Secure File, Encrypt and Decrypt Any File with Password

Rate me:
Please Sign up or sign in to vote.
3.53/5 (11 votes)
5 Apr 2008CPOL1 min read 73.7K   1.7K   37   23
Protect any file by encryption and decryption with password. It encrypts the file and saves as secure XML with binary format, and stores file password as custom PK encrypter routine.
secure_file

secure_file

Introduction

This article discusses how you can protect any file by encrypting with password. Download the source code of P2P Secure File written in VB.NET. It encrypts the file and saves it as secure XML with binary format, and stores file password as custom PK encrypter routine.

Background

This P2P Secure File program source code written in Visual Basic .NET programming language is capable of encrypting and decrypting any file. It converts any file into byte array and converts byte array to stream and writes it into XML file with *.sp2p extension.

Using the Code

Logic

Step 1: First select a file. Convert the file content into Byte array. For that, we create FileStream object and pass this FileStream object to BinaryReader to get the raw bytes.

VB.NET
Dim Fs As New System.IO.FileStream(FileName, System.IO.FileMode.Open)
Dim bn As New System.IO.BinaryReader(Fs)

Step 2: Now create a DataTable to a DataSet to store all the details including file name, binary content and encrypted password.

VB.NET
Dim DsImg As New DataSet
Dim Dt As New DataTable("Images")
Dt.Columns.Add(New DataColumn("sysid", _
System.Type.GetType("System.String")))
Dt.Columns.Add(New DataColumn("filename", _
System.Type.GetType("System.String")))
Dt.Columns.Add(New DataColumn("image", _
System.Type.GetType("System.Byte[]")))
Dt.Columns.Add(New DataColumn("filetag", _
System.Type.GetType("System.String")))
DsImg.Tables.Add(Dt)

Step 3: Now add the data to the DataTable and write XML file with *.sp2p extension, encrypt password with custom PK encryption. If you want, you can encrypt the binary content. I left this to the users.

VB.NET
Dim Dr As DataRow
Dr = DsImg.Tables("images").NewRow
Dr("sysid") = Now.ToString
Dr("filename") = TxtFileName.Text
Dr("image") = bn.ReadBytes(Int(bn.BaseStream.Length))
Dr("filetag") = StrEncrypt(TxtPassword.Text)
DsImg.Tables("images").Rows.Add(Dr)

'>>> write xml file from dataset with binary content
DsImg.WriteXml(TxtFileName.Text & ".sp2p") 

Step 4: For decryption, we load the XML file into dataset, then decrypt the password to check with the supplied password, If it matches, read content from dataset into byte array and write into the file stream, remove .sp2p from the final decrypted file.

VB.NET
Dim Content As Byte()
Content = DsImg.Tables(0).Rows(0).Item(2)
Dim Fs As New System.IO.FileStream(FileName, System.IO.FileMode.Create)
Fs.Write(Content, 0, Content.Length)
Fs.Close()

Points of Interest

Here I write a chunk of bytes to file system directly. If you want, you can encrypt or transpose the byte sequence for better security. You can find a more detailed explanation of encryption algorithm on my site programmer2programmer.

History

  • 5th April, 2008: Initial post

License

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


Written By
CEO Programmer2Programmer
India India
Master in Computer Application
More than 8 Years of Software Developer Experience. MCSD.Net, In past 8 years I have developed Graphic Application, Telephony Application, CRM Application, Games, Internet Programming, TAPI, SAPI, OCR, ICR, Data Base application. Implementing Data Warehousing and Data mining, MIS Automation, Web Application.

Comments and Discussions

 
GeneralMy vote of 5 Pin
Shubhranshu from Mumba1-Apr-12 19:28
Shubhranshu from Mumba1-Apr-12 19:28 
GeneralMy vote of 4 Pin
Member 432084415-Aug-11 1:13
Member 432084415-Aug-11 1:13 
Questionwhat algorithm this project use? Pin
NURFAEZAH ABDUL MALIK19-Oct-10 5:01
NURFAEZAH ABDUL MALIK19-Oct-10 5:01 
Generalblowing my own horn a bit sorry Pin
MartyK20074-Jun-08 0:42
MartyK20074-Jun-08 0:42 
Generalsorry, this code does not encrypt any files, it encrypts the specified password only Pin
Alexey Yakovlev9-Apr-08 6:55
Alexey Yakovlev9-Apr-08 6:55 
GeneralRe: sorry, this code does not encrypt any files, it encrypts the specified password only Pin
Atanu Maity9-Apr-08 18:56
Atanu Maity9-Apr-08 18:56 
GeneralRe: sorry, this code does not encrypt any files, it encrypts the specified password only Pin
Alexey Yakovlev11-Apr-08 5:50
Alexey Yakovlev11-Apr-08 5:50 
GeneralRe: sorry, this code does not encrypt any files, it encrypts the specified password only Pin
Atanu Maity11-Apr-08 21:12
Atanu Maity11-Apr-08 21:12 
GeneralAwesome Pin
Suresh Suthar9-Apr-08 3:18
professionalSuresh Suthar9-Apr-08 3:18 
GeneralRe: Awesome Pin
Abhijit Jana10-May-08 1:43
professionalAbhijit Jana10-May-08 1:43 
GeneralThank You Pin
prabhaChoudhary7-Apr-08 20:35
prabhaChoudhary7-Apr-08 20:35 
GeneralRe: Thank You Pin
Atanu Maity8-Apr-08 21:52
Atanu Maity8-Apr-08 21:52 
Questionthank you Pin
alaa masarweh7-Apr-08 5:16
alaa masarweh7-Apr-08 5:16 
GeneralRe: thank you Pin
Atanu Maity7-Apr-08 7:10
Atanu Maity7-Apr-08 7:10 
GeneralToo good... Pin
Sushilck7-Apr-08 3:11
Sushilck7-Apr-08 3:11 
AnswerRe: Too good... Pin
Atanu Maity7-Apr-08 3:34
Atanu Maity7-Apr-08 3:34 
QuestionWant to encrypt text file? Pin
Joy_Dass19817-Apr-08 3:06
Joy_Dass19817-Apr-08 3:06 
AnswerRe: Want to encrypt text file? Pin
Atanu Maity7-Apr-08 3:32
Atanu Maity7-Apr-08 3:32 
GeneralNice Algorithm Pin
Sapana IR6-Apr-08 19:19
Sapana IR6-Apr-08 19:19 
GeneralRe: Nice Algorithm Pin
Atanu Maity6-Apr-08 19:24
Atanu Maity6-Apr-08 19:24 
Questionlarge file issue? Pin
Dankarmy6-Apr-08 10:01
Dankarmy6-Apr-08 10:01 
AnswerRe: large file issue? Pin
Atanu Maity6-Apr-08 19:10
Atanu Maity6-Apr-08 19:10 
GeneralRe: large file issue? Pin
Dankarmy7-Apr-08 12:29
Dankarmy7-Apr-08 12:29 

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.