943,083 Members | Top Members by Rank

Ad:
  • C# Discussion Thread
  • Unsolved
  • Views: 5802
  • C# RSS
Jan 7th, 2008
0

Data Encryption and Decryption

Expand Post »
Hi Developers.......

Can anybody help me......I have an array and i want to enrypt that array and save that encrypted data into a file .......how can i do this...... i don't know ....how to do Encrytion in C#

Every Comment will be welcome....
Thanks......
Similar Threads
Reputation Points: 10
Solved Threads: 2
Light Poster
btech_Saurabh is offline Offline
39 posts
since Jan 2008
Jan 7th, 2008
-1

Re: Data Encryption and Decryption

There are for algorithms of encryption/decryption with in the .Net framework

DES algorithm, RC2 algorithm, Rijindael algorithm and TripleDES algorithm they are represented as classes

First step is to include directive of cryptography
witch is System.Security.Cryptography

Second step is to create your own key, to do that
string password = // you can put here your password
UnicodeEncoding objectEncoding= new UnicodeEncoding();
byte[] key = objectEncoding.GetBytes(password);

third step is to create a stream where the encipted data will be putted

FileStream CryptedFile=new FileStream(cryptFile, FileMode.Create);

encrypt the contents

RijndaelManaged Crpt= new RijndaelManaged();
CryptoStream Encryptor= new CryptoStream(cryptedFile, Crpt.CreateEncryptor(key, key), CryptoStreamMode.Write);

And the the data encryption is done according to the Rajindael algorythm
u can use another algorithms like the DES or u can develop your own encryption algorithm
Reputation Points: 11
Solved Threads: 16
Junior Poster
Jugortha is offline Offline
172 posts
since Oct 2007
Jan 7th, 2008
0

Re: Data Encryption and Decryption

Okay.....i'll try it.......thanx Jugortha......
Reputation Points: 10
Solved Threads: 2
Light Poster
btech_Saurabh is offline Offline
39 posts
since Jan 2008
Jul 24th, 2009
0

Re: Data Encryption and Decryption

I'm trying to write the data encryption and decryption by using MISTY Algorithm with Java Language. So I need to help all of you. Can you help me for my coding? Please help me.
Reputation Points: 10
Solved Threads: 0
Newbie Poster
aungzy24 is offline Offline
1 posts
since Jul 2009

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in C# Forum Timeline: C# Detect Input In TextBox
Next Thread in C# Forum Timeline: web form





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC