Click here to Skip to main content
Sign Up to vote bad
good
See more: General
could u tell me the way to encrypt and decrypt the any string
Posted 23 Sep '12 - 21:05
Edited 23 Sep '12 - 21:08


1 solution

See the following links:
 
Simple String Encryption and Decryption with Source Code[^]
Encrypt and Decrypt a String[^]
 
For Decrypt
byte[] encData_byte = new byte[string.Length];
 
encData_byte = System.Text.Encoding.UTF8.GetBytes(Textbox3.Text);
 
string encodedData = Convert.ToBase64String(encData_byte);
 
result= encodedData;
 
for Encrypt:
System.Text.UTF8Encoding encoder = new System.Text.UTF8Encoding();
 
System.Text.Decoder utf8Decode = encoder.GetDecoder();
 
byte[] todecode_byte = Convert.FromBase64String(string);
 
int charCount = utf8Decode.GetCharCount(todecode_byte, 0, todecode_byte.Length);
 
char[] decoded_char = new char[charCount];
 
utf8Decode.GetChars(todecode_byte, 0, todecode_byte.Length, decoded_char, 0);
 
string result = new String(decoded_char);
  Permalink  

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

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 Sergey Alexandrovich Kryukov 239
1 OriginalGriff 188
2 Mahesh Bailwal 139
3 Maciej Los 135
4 Aarti Meswania 98
0 Sergey Alexandrovich Kryukov 10,214
1 OriginalGriff 7,819
2 CPallini 4,181
3 Rohan Leuva 3,522
4 Maciej Los 3,089


Advertise | Privacy | Mobile
Web02 | 2.6.130523.1 | Last Updated 24 Sep 2012
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid