Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a string that represents a value in base64. I want to convert this string from base64 to hexadecimal. I'm working in C++ on Ubuntu 10.10. I have the following code:

std::string ssir = "DNQwSinfOUSSWd+U04r23A==";
std::string dec=(base64_decode(ssir));
std::stringstream ss;

for (int i=0; i<dec.size(); ++i) {
    if (i != 0) ss << ':';
 ss << std::hex << std::setw(2) << std::setfill('0') << static_cast<unsigned int>(dec[i]);//(int)(dec[i]);
}
std::string res;
res= ss.str();
cout<<"the ress is: "<<res<<std::endl;

The result is:

0c:ffffffd4:30:4a:29:ffffffdf:39:44:ffffff92:59:ffffffdf:ffffff94:ffffffd3:ffffff8a:fffffff6:ffffffdc

It is correct, besides those ffffffff. What can I do to fix this? If I want my hexadecimal result to be written to a std::vector<unsigned char> x, what do I have to do?

share|improve this question
2  
Note that what you call your "hexa result" is a string, so storing it in a std::string would make more sense. – ereOn Jan 14 '11 at 8:17
Duplicate (same user, yesterday): base 64 string to hexa string – Paul R Jan 14 '11 at 8:32

3 Answers

Try using this cast instead:

static_cast<unsigned char>(dec[i])

int is 32 bits wide and you only want to output 8 bits, which is how wide char is. Presumably std::hex is considering the input type when formatting the number. (Though I'm not quite sure where the sign extension is coming from, since you are casting to an unsigned type...)

share|improve this answer
If the implementation defines char as signed, casting the char to an int will result in the sign extension. – Daniel Gallagher Jan 14 '11 at 8:49
@Daniel: Even when casting to an unsigned type? I was not aware that casting from a signed type to an unsigned type would result in a sign extension. – cdhowie Jan 14 '11 at 9:16
Yes. When casting from an unsigned type, no sign extension occurs. – Daniel Gallagher Jan 14 '11 at 16:10
@Daniel: Ah, the source type determines whether sign extension occurs. I assumed sign extension was performed only when casting signed to signed. – cdhowie Jan 14 '11 at 16:43

@cdhowie's post is nearly correct. However, if you cast to a char (signed or unsigned), the standard stream operators will attempt to write out the ASCII value of that character. You will either need another cast:

static_cast<int>(static_cast<unsigned char>(dec[i]))

or to explicitly truncate the value:

(static_cast<int>(dec[i]) & 0xFF)

(In both cases, your outer int does not need to be unsigned; in the first case, signed int is wide enough to hold all unsigned char values, and in the second, you are explicitly making the value positive.)

share|improve this answer

You can try another string to hex conversion method. I wrote two functions. The str_to_hex - is my method. str_to_hex2 - is your. I omit base64 encoding. And then I invoked 1M times my function and your. The execution time for str_to_hex is

time ./a.out 

real    0m0.365s
user    0m0.360s
sys 0m0.010s

And the execution time for str_to_hex2 is:

time ./a.out 

real    0m3.253s
user    0m3.220s
sys 0m0.000s

Ubuntu 10.04, 64bit, g++ 4.4.3, -O3 option.

The code of testing programm is below.

#include <string>
#include <iostream>
#include <sstream>
#include <iomanip>

void str_to_hex() {
    std::string ssir = "DNQwSinfOUSSWd+U04r23A==";
    static const char *hex = "0123456789ABCDEF";
    std::string result;
    result.reserve(ssir.size() * 3);
    for (std::string::const_iterator i = ssir.begin(), end = ssir.end(); i != end; ++i) {
        if (i != ssir.begin())
            result.push_back(':');
        result.push_back(hex[*i >> 4]);
        result.push_back(hex[*i & 0xf]);
    }
}

void str_to_hex2() {
    std::string ssir = "DNQwSinfOUSSWd+U04r23A==";
    std::stringstream ss;
    for (int i=0; i<ssir.size(); ++i) {
            if (i != 0) ss << ':';
             ss << std::hex << std::setw(2) << std::setfill('0') << static_cast<unsigned int>(ssir[i] & 0xff);
    }
}

int main() {
    for (int i = 0; i < 1000000; ++i)
        str_to_hex();

}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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