About 7,680,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 …

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

    Jan 4, 2014 · Base64 encoding occurs in size of 4 characters. Because an ASCII character can take any out of 256 characters, which needs 4 characters of Base64 to cover. If the given …

  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 …

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

    Jan 9, 2021 · void base64_encode(string & out, const vector<uint8_t>& buf); void base64_encode(string & out, const uint8_t* buf, size_t bufLen); void base64_encode(string & …

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

    The part about "One case in which padding characters are required is concatenating multiple Base64 encoded files." is wrong. For example when concatenating two base64 files where the …

  6. How to check whether a string is Base64 encoded or not

    All that you can determine is that the string contains only characters that are valid for a base64 encoded string. It may not be possible to determine that the string is the base64 encoded …

  7. Why is base64_encode () adding a slash "/" in the result?

    Jul 12, 2012 · In addition to all of the answers above, pointing out that / is part of the expected base64 alphabet, it should be noted that the particular reason you saw a / in your encoded …

  8. c# - What's the difference between UTF8/UTF16 and Base64 in …

    Base64 is an encoding to represent any byte sequence by a sequence of printable characters (i.e. A–Z, a–z, 0–9, +, and /). There is no System.Text.Encoding.Base64 because Base64 is not a …

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

    Apr 19, 2014 · Remember to import base64 and that the b64encode function takes bytes as an argument. import base64 b = base64.b64encode(bytes('your_string', 'utf-8')) # bytes …

  10. Encoding as Base64 in Java - Stack Overflow

    In Java 8 it can be done as: Base64.getEncoder().encodeToString(string.getBytes(StandardCharsets.UTF_8)) Here is a …

Refresh