Click here to Skip to main content
6,293,171 members and growing! (11,953 online)
Email Password   helpLost your password?
General Programming » Cryptography & Security » Encryption     Beginner License: The Code Project Open License (CPOL)

P2P Secure File, Encrypt and Decrypt Any File with Password

By Atanu Maity

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.
XML, VB 7.x, VB 8.0, VB 9.0.NET 1.0, .NET 1.1, .NET 2.0, Win2K, WinXP, Win2003, Vista, .NET 3.0, WinForms, Architect, Dev, Design
Version:2 (See All)
Posted:5 Apr 2008
Views:12,971
Bookmarked:21 times
Announcements
Loading...
 
Search    
Advanced Search
printPrint   Broken Article?Report       add Share
  Discuss Discuss   Recommend Article Email
11 votes for this article.
Popularity: 3.76 Rating: 3.61 out of 5
2 votes, 28.6%
1
1 vote, 14.3%
2

3
3 votes, 42.9%
4
1 vote, 14.3%
5
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.

 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.

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.

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.

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)

About the Author

Atanu Maity


Member
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.
Occupation: CEO
Company: Programmer2Programmer
Location: India India

Other popular Cryptography & Security articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 20 of 20 (Total in Forum: 20) (Refresh)FirstPrevNext
Generalblowing my own horn a bit sorry PinmemberMartyK20071:42 4 Jun '08  
Generalsorry, this code does not encrypt any files, it encrypts the specified password only PinmemberAlexey Yakovlev7:55 9 Apr '08  
GeneralRe: sorry, this code does not encrypt any files, it encrypts the specified password only PinmemberAtanu Maity19:56 9 Apr '08  
GeneralRe: sorry, this code does not encrypt any files, it encrypts the specified password only PinmemberAlexey Yakovlev6:50 11 Apr '08  
GeneralRe: sorry, this code does not encrypt any files, it encrypts the specified password only PinmemberAtanu Maity22:12 11 Apr '08  
GeneralAwesome Pinmembersuresh suthar4:18 9 Apr '08  
GeneralRe: Awesome PinmemberAbhijit Jana2:43 10 May '08  
GeneralThank You PinmemberprabhaChoudhary21:35 7 Apr '08  
GeneralRe: Thank You PinmemberAtanu Maity22:52 8 Apr '08  
Questionthank you Pinmemberalaa masarweh6:16 7 Apr '08  
GeneralRe: thank you PinmemberAtanu Maity8:10 7 Apr '08  
GeneralToo good... PinmemberSushilck4:11 7 Apr '08  
AnswerRe: Too good... PinmemberAtanu Maity4:34 7 Apr '08  
QuestionWant to encrypt text file? PinmemberJoy_Dass19814:06 7 Apr '08  
AnswerRe: Want to encrypt text file? PinmemberAtanu Maity4:32 7 Apr '08  
GeneralNice Algorithm PinmemberSapana IR20:19 6 Apr '08  
GeneralRe: Nice Algorithm PinmemberAtanu Maity20:24 6 Apr '08  
Generallarge file issue? PinmemberDankarmy11:01 6 Apr '08  
GeneralRe: large file issue? PinmemberAtanu Maity20:10 6 Apr '08  
GeneralRe: large file issue? PinmemberDankarmy13:29 7 Apr '08  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 5 Apr 2008
Editor: Deeksha Shenoy
Copyright 2008 by Atanu Maity
Everything else Copyright © CodeProject, 1999-2009
Web20 | Advertise on the Code Project