About 28,500,000 results
Open links in new tab
  1. base64 - What is base 64 encoding used for? - Stack Overflow

    Oct 14, 2008 · The base64 is a binary to a text encoding scheme that represents binary data in an ASCII string format. base64 is designed to carry data stored in binary format across the channels.

  2. What is the real purpose of Base64 encoding? - Stack Overflow

    19 Base64 is a mechanism to enable representing and transferring binary data over mediums that allow only printable characters.It is most popular form of the “Base Encoding”, the others known in use …

  3. Why does a base64 encoded string have an = sign at the end

    I know what base64 encoding is and how to calculate base64 encoding in C#, however I have seen several times that when I convert a string into base64, there is an = at the end. A few questions cam...

  4. How do I encode and decode a base64 string? - Stack Overflow

    Jul 31, 2012 · How do I return a base64 encoded string given a string? How do I decode a base64 encoded string into a string?

  5. How to encode text to base64 in python - Stack Overflow

    Base64 encoding is a process of converting binary data to an ASCII string format by converting that binary data into a 6-bit character representation. The Base64 method of encoding is used when …

  6. Base64 decode snippet in C++ - Stack Overflow

    Is there a freely available Base64 decoding code snippet in C++?

  7. How can you encode/decode a string to Base64 in JavaScript?

    You can use btoa() and atob() to convert to and from base64 encoding. There appears to be some confusion in the comments regarding what these functions accept/return, so… btoa() accepts a …

  8. How to display Base64 images in HTML - Stack Overflow

    Learn how to display Base64 images in HTML with practical examples and solutions discussed by the Stack Overflow community.

  9. security - What is the purpose of base 64 encoding and why it used in ...

    Base64 is not encryption -- it's an encoding. It's a way of representing binary data using only printable (text) characters. See this paragraph from the wikipedia page for HTTP Basic Authentication: While …

  10. Encoding as Base64 in Java - Stack Overflow

    I need to encode some data in the Base64 encoding in Java. How do I do that? What is the name of the class that provides a Base64 encoder? I tried to use the sun.misc.BASE64Encoder class, without s...