About 1,070,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 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. 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 …

  4. How do you decode Base64 data in Python? - Stack Overflow

    Jul 19, 2021 · You were given a piece of data that was encoded in base64, and you know how to decode the string to get the original data - after that, you still have to understand the format of …

  5. go - Encode/Decode base64 - Stack Overflow

    here is my code and I don't understand why the decode function doesn't work. Little insight would be great please. func EncodeB64(message string) (retour string) { base64Text := make([]byte, …

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

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

  8. Decode base64 data in Java - Stack Overflow

    Jan 22, 2009 · I have an image that is base64 encoded. How do I decode base64 in Java? Hopefully using only the libraries included with Sun Java 6.

  9. Base64 Java encode and decode a string - Stack Overflow

    I want to encode a string into base64 and transfer it through a socket and decode it back. But after decoding it gives different answer. Following is my code and result is "77+9x6s=" import ja...

  10. How to encode and decode data in base64 and base64URL by …

    Nov 20, 2019 · Adding on to the answer by Kaplan Ilya, here is a command using standard linux/unix commands that can decode base64url, including handling missing padding. Note: …