0
votes
3answers
23 views
Decoding base64-encoded data from xml document
I receive some xml-files with embedded base64-encoded images, that I need to decode and save as files.
However, I get errors like "Invalid length for a Base-64 char array" and "In …
0
votes
1answer
39 views
base64 encoded data mixed in with “random” hex
I get an input string with some data that's base64 encoded. Unfortunately, it gets random hexadecimal data (all lowercase) mixed it. It's fairly straightforward to sort out by hand …
1
vote
3answers
85 views
Why does this base64 string comparison in Perl fail?
I am trying to compare an encode_base64('test') to the string variable containing the base64 string of 'test'. The problem is it never validates!
use MIMI::Base64 qw(encode_base64 …
0
votes
3answers
37 views
Search for base64 encoded content in StreamReader?
I need to parse a NDR file from an SMTP badmail folder from IIS. Attached to the NDR is the content which is base64 encoded. That is what I need to get to. I was hoping that, using …
1
vote
2answers
31 views
JBoss 5 truncates trailing = of a base64 cookie string
After upgrading from JBoss 4 to JBoss 5, I've noticed the most annoying regression. It truncates the trailing equal sign ('=') of a base64 cookie value.
It took me so much time to …
4
votes
5answers
168 views
What is the advantage of using base64 encode?
I would like to understand it better.
Do I really need it? Can't I simple use pure string?
I heard it expand the size of things encoded by 30% (at least for images).
1
vote
2answers
90 views
XSLT: Convert base64 data into image files
I have seen several questions on how to encode an image file in base64, but how about the other way around - how do I reconstitute a picture from a base64 string stored in an XML f …
-1
votes
1answer
56 views
Why need base64 in smtp
Why do I need to encode login and password in base64, when using SMTP-AUTH. Here is an example of my SMTP conversation
220 ALAN.CP.com Microsoft ESMTP MAIL Service
ehlo
250 ALA …
0
votes
1answer
54 views
Do I need to encode using Base 64 in my web service?
I am transferring messages to mobile devices via a web service. The data is an xml string, which I compress using GZipStream, then encode using Base64.
I am getting out-of memory …
-1
votes
1answer
32 views
Webservice to convert file to base64 string
Is there a webservice available that will take a url of a file e.g. http://example.com/images/image.jpg and return a base64 encoded string of that file preferably in json format?
1
vote
3answers
153 views
How to split a string in PHP [solved]
Hello,
I have a long string resulted from encoding a binary file -an image file- (in base 64). Is there a particulary method (or rule) I should follow when spliting it?
Edit:
I wan …
0
votes
3answers
83 views
Encryption/Encoding Algorithm
I have an unencrypted/unencoded string - "565040574". I also have the encrypted/encoded string for this string - "BSubW2AUWrSCL7dk9ucoiA==".
It looks like this string has been Bas …
2
votes
1answer
190 views
asp.net Invalid character in a Base-64 string
I have a c# mobile site and have a problem with some of mobile clients. I have posted a trace below but basically browser of phone or wap gateway that phone connects to internet ur …
3
votes
5answers
123 views
Two Base64 encodings yield same decoding
Is it expected behavior that two encodings can map to the same decoding? I'm trying to troubleshoot a digital signature issue by doing sanity checks on base64-encoded intermediate …
1
vote
3answers
133 views
Given a string, how do I know if it needs decoding
I'm using python's base64 module and I get a string that can be encoded or not encoded. I would like to do something like:
if isEncoded(s):
output = base64.decodestring(s)
else …
