Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
  1. How do I return a base64 encoded string given a string?

  2. How do I decode a base64 encoded string into a string?

share|improve this question
Why is this question so heavily down-voted? Because it was "self-answered"? – Gnark Jul 31 '12 at 15:10
3  
@Gnark, I'm assuming because you could figure this out with a Google search in 2 seconds. – Joe Jul 31 '12 at 16:20
1  
If this is a "sharing the knowledge" question and answer, I think we're looking for something a bit more in-depth. Also a quick search of SO turns up: stackoverflow.com/a/7368168/419 – Kev Aug 1 '12 at 1:46

closed as not a real question by Kev Aug 1 '12 at 1:50

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Encode


public static string Base64Encode(string plainText) {
  var plainTextBytes = System.Text.Encoding.UTF8.GetBytes(plainText);
  return System.Convert.ToBase64String(plainTextBytes);
}

Decode


public static string Base64Decode(string base64EncodedData) {
  var base64EncodedBytes = System.Convert.FromBase64String(base64EncodedData);
  return System.Text.Encoding.UTF8.GetString(base64EncodedBytes);
}
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.