up vote -5 down vote favorite
share [g+] share [fb]

I'm trying to decode base64-encoded string with openssl. However, it works only 4 times out of 5.

Decoded string should always be 64 chars long. BIO_read() always returns 64. However, sometimes returned buffer is shorter than 64!

Any ideas what is wrong? How can i always get the correct string?

link|improve this question

61% accept rate
What do you mean by "returned buffer"? You pass the buffer into BIO_read. Sample code would help. – Jon Skeet Sep 12 '09 at 10:31
I mean what BIO_read puts into destination. Anyway, I tracked down my problem to single character. It looks like sometimes BIO_read returns the same char as terminating. and that kills the string... – Mantas Sep 12 '09 at 10:42
feedback

1 Answer

up vote 4 down vote accepted

Are you using str[n]cpy? You can't! Base64 encoded data can contain null characters, which C string processing functions interpret as end-of-string.

Use memcpy instead of str[n]cpy, memcmp instead of strcmp, etc. These functions require you to know your data size, but I believe that you do know it.

Also if you're not very confident about C-style strings and such, there's plenty of information to be found about the topic here.

link|improve this answer
Thanks!!! That was the missing part of the puzzle. – Mantas Sep 12 '09 at 12:26
Hmmm, isn't base64 encoded data composed entirely of printable characters (a-z, A-Z, 0-9, '+' and '/' [and '=' for padding])? – pmg Sep 12 '09 at 12:42
1  
I'm referring to the data that was encoded as Base64 (i.e. what you get back when you Base64 decode), not the Base64 encoded form of the data. – Artelius Sep 12 '09 at 13:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.