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

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

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

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

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

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

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

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

  8. Encode to Base64 a specific file by Windows Command Line

    Jan 5, 2021 · I need to use a command line on Windows OS to generate the base64 data of a specific file on the screen (without generating a file). I have see that on Unix system is …

  9. How can I do Base64 encoding in Node.js? - Stack Overflow

    Does Node.js have built-in Base64 encoding yet? The reason why I ask this is that final() from crypto can only output hexadecimal, binary or ASCII data. For example: var cipher = …

  10. How do I base64 encode (decode) in C? - Stack Overflow

    Dec 5, 2008 · In base64_decode and base64_encode, string termination char was missing before returning data : decoded_data[output_length] = 0; and encoded_data[output_length] = 0;