Below is my current char* to hex string function. I wrote it as an exercise in bit manipulation. It takes ~5ms on a AMD Athlon MP 2800+ to hexify a 10 million byte array. Is there any trick or other way that I am missing?

How can I make this faster?


    static const char _hex2asciiU_value[16] =
         { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' };

    std::string char_to_hex( const unsigned char* _pArray, unsigned int _len )
    {
        std::string str;
        str.resize(_len*2);
        char* pszHex = &str[0];
        const unsigned char* pEnd = _pArray + _len;

        unsigned int ofs = 0;
        const char* pHex = _hex2asciiU_value;
        for( const unsigned char* pChar = _pArray; pChar != pEnd; pChar++, pszHex += 2 ) {
            ofs = *pChar >> 4;
            pszHex[0] = pHex[ofs];
            pszHex[1] = pHex[*pChar-(ofs*16)];
        }

        return str;
    }