About 1,140,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 encode and decode a base64 string? Asked 13 years, 5 months ago Modified 1 year, 6 months ago Viewed 1.6m times

  2. How can I decode a base64 string from the command line?

    I would like to write a bash script to decode a base64 string. For example I type decode QWxhZGRpbjpvcGVuIHNlc2FtZQ== and it prints Aladdin:open sesame and returns to the …

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

  4. Base64 encoding and decoding in client-side Javascript

    May 12, 2010 · Are there any methods in JavaScript that could be used to encode and decode a string using base64 encoding?

  5. Ignore 'Incorrect padding' error when base64 decoding

    While a base64 encoded string with length, for example, 5 would require 3 padding characters, a string of length 5 is not even a valid length for a base64 encoded string. You'd get the error: …

  6. powershell - How to decode a Base64 string? - Stack Overflow

    Mar 14, 2013 · Base64 encoding converts three 8-bit bytes (0-255) into four 6-bit bytes (0-63 aka base64). Each of the four bytes indexes an ASCII string which represents the final output as …

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

  8. Decoding base64 with powershell - Stack Overflow

    I'm attempting to decode an attachment in an email file from base64 and save it to disk. For testing purposes, this is my code. Where input.txt contains just the base64 encoded data, …

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

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

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