Blankman
Blankman

Reputation: 267040

How to convert a byte array to a string?

Using the function from: http://msdn.microsoft.com/en-us/library/system.security.cryptography.rijndaelmanaged.aspx

public static byte[] encryptStringToBytes_AES(string plainText, byte[] Key, byte[] IV)

As you can see it returns a byte array, I want to convert the byte array to a string.

How can I convert it from a byte array to string and visa versa?

Upvotes: 3

Views: 6414

Answers (4)

Talljoe
Talljoe

Reputation: 14827

If you don't care how it's stored, an easy way is to use:

Convert byte array into string: Convert.ToBase64String(YourByteArray) and
Convert string into byte array: Convert.FromBase64String(YourString).
This will give a concise, printable ASCII representation of the byte array.

Upvotes: 18

shalin
shalin

Reputation: 452

While using Rijndael Encryption i faced this problem, it returns encrypted byte[] (array), Convert byte[] to string;

 myStringVariable= Convert.ToBase64String(myEncryptedByteArray);  

Convert string to byte[];

byte[] bytes = Convert.FromBase64String(myStringVariable);   

For more about Rijndael

Cheers !!!

Upvotes: 0

backslash17
backslash17

Reputation: 5390

This can help you a lot, is about to converting into Hex format but can be very usefull How do you convert Byte Array to Hexadecimal String, and vice versa?

Upvotes: 2

Jimmy
Jimmy

Reputation: 91472

System.Text.Encoding.ASCII.GetString(bytes);

Upvotes: 0

Related Questions