About 24,400,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. 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...

  3. algorithm - Why do we use Base64? - Stack Overflow

    Wikipedia says Base64 encoding schemes are commonly used when there is a need to encode binary data that needs be stored and transferred over media that are designed to deal with textual data. Th...

  4. 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.

  5. RegEx to parse or validate Base64 data - Stack Overflow

    Is it possible to use a RegEx to validate, or sanitize Base64 data? That's the simple question, but the factors that drive this question are what make it difficult. I have a Base64 decoder that ca...

  6. 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 …

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

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

  8. string - Base64 length calculation? - Stack Overflow

    43 For reference, the Base64 encoder's length formula is as follows: As you said, a Base64 encoder given n bytes of data will produce a string of 4n/3 Base64 characters. Put another way, every 3 bytes …

  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. How do you decode Base64 data in Python? - Stack Overflow

    You were given a piece of data that was encoded in base64, and you know how to decode the string to get the original data - after that, you still have to understand the format of the data in order to be able …