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. 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 and patterns.

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

  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 receipt …

  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 command-line …

  6. 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 sufficient to use cat …

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

    The base64.b64encode function encodes bytes object into Base64 format. It takes a bytes-like object as input and returns a Base64 encoded bytes object. The b.decode function decodes the bytes object …

  8. 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 C#? …

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

  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;