Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a Base64Stream for .NET?

Tags:

.net

base64

If I want to produce a Base64-encoded output, how would I do that in .NET?

I know that since .NET 2.0, there is the ICryptoTransform interface, and the ToBase64Transform() and FromBase64Transform() implementations of that interface.

But those classes are embedded into the System.Security namespace, and require the use of a TransformBlock, TransformFinalBlock, and so on.

Is there an easier way to base64 encode a stream of data in .NET?

like image 726
Cheeso Avatar asked Mar 26 '10 17:03

Cheeso


People also ask

What is FromBase64String?

FromBase64String(String) method in C# converts the specified string, which encodes binary data as base-64 digits, to an equivalent 8-bit unsigned integer array.

How do you decode base 64?

To decode with base64 you need to use the --decode flag. With encoded string, you can pipe an echo command into base64 as you did to encode it. Using the example encoding shown above, let's decode it back into its original form. Provided your encoding was not corrupted the output should be your original string.


1 Answers

If you want a stream that converts to Base64, you can put a ToBase64Transform into a CryptoStream:

new CryptoStream(stream, new ToBase64Transform(), CryptoStreamMode.Write) 

If you just want to convert a single byte array to Base64, you can simply call Convert.ToBase64String(bytes).

In both cases, you can replace the word To with From.

like image 197
SLaks Avatar answered Sep 28 '22 03:09

SLaks