Is there a Base64Stream for .NET? where?

Posted by Cheeso on Stack Overflow See other posts from Stack Overflow or by Cheeso
Published on 2010-03-26T17:52:42Z Indexed on 2010/03/26 18:03 UTC
Read the original article Hit count: 275

Filed under:
|
|

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?

© Stack Overflow or respective owner

Related posts about .NET

Related posts about system.io