Click here to Skip to main content
15,889,281 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
could u tell me the way to encrypt and decrypt the any string
Posted
Updated 23-Sep-12 21:08pm
v2

1 solution

See the following links:

Simple String Encryption and Decryption with Source Code[^]
Encrypt and Decrypt a String[^]

For Decrypt
C++
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:
C++
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);
 
Share this answer
 
v3

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900