About 5,350,000 results
Open links in new tab
  1. base64 - What is base 64 encoding used for? - Stack Overflow

    Oct 14, 2008 · I've heard people talking about "base 64 encoding" here and there. What is it used for?

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

    Jan 5, 2021 · I have found this solution: certutil -encode -f <file_name> tmp.b64 && findstr /v /c:- tmp.b64 && del tmp.b64 But this needs the system to generate a temporary file and so, at the end, …

  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() accepts a …

  4. Ignore 'Incorrect padding' error when base64 decoding

    Did you actually TRY using base64.b64decode(strg, '-_')? That is a priori, without you bothering to supply any sample data, the most likely Python solution to your problem. The "methods" proposed …

  5. Convert byte string to base64-encoded string (output not being a byte ...

    3 I couldn't find a decent answer which worked on converting bytes to urlsafe b64 encoded string, so posting my solution here. Let's say you have an input:

  6. Base64 encoding and decoding with OpenSSL - Stack Overflow

    Mar 13, 2011 · I've been trying to figure out the openssl documentation for base64 decoding and encoding. I found some code snippets below #include <openssl/sha.h> #include <openssl/hmac.h> …

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

    LookupError: 'base64' is not a text encoding; use codecs.encode() to handle arbitrary codecs How do I go about doing this ? ( using Python 3.4)

  8. CMD batch - encode file to base 64 and trim characters and new line

    I'm trying to make a batch file from CMD with the following commands: Convert file to base 64 - using certutil command this is how the contents of the base 64 looks like (B64.txt): Trim the base 6...

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

    Mar 14, 2013 · There are no PowerShell-native commands for Base64 conversion - yet (as of PowerShell [Core] 7.1), but adding dedicated cmdlets has been suggested in GitHub issue #8620. …

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

    Dec 5, 2008 · I have binary data in an unsigned char variable. I need to convert them to PEM base64 in c. I looked in openssl library but i could not find any function. Does any body have any idea?