About 1,990,000 results
Open links in new tab
  1. 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 …

  2. base64 - What is base 64 encoding used for? - Stack Overflow

    Oct 14, 2008 · Base64 is also used when communicating with government Fiscal Signature printing devices (usually, over serial or parallel ports) to minimize the delay when transferring …

  3. 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?

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

    I'd rather use the Base64 encode/decode methods from CryptoJS, the most popular library for standard and secure cryptographic algorithms implemented in JavaScript using best practices …

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

    Jan 4, 2014 · Base64 encoded data is exactly 1.333 (3) times bigger than the original data + additional 0-3 extra characters depending on the length of the input data modulo 4. It's …

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

  7. Base64 Encode "string" - command-line Windows? - Stack Overflow

    May 5, 2016 · I have found numerous ways to base64 encode whole files using the command-line on Windows, but I can't seem to find a simple way to batch encode just a "string" using a …

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

  9. How to achieve Base64 URL safe encoding in C#? - Stack Overflow

    Sep 29, 2015 · I want to achieve Base64 URL safe encoding in C#. In Java, we have the common Codec library which gives me an URL safe encoded string. How can I achieve the same using …

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