Returns the hash as a hexadecimal string.
Definition at line 98 of file FXSecure.h. References FX::FXString::arg(), data, and FX::Secure::TigerHashValue::Data_t::longlong. 00099 { 00100 #if FOX_BIGENDIAN==1 00101 FXString ret("0x%1%2%3"); 00102 #else 00103 FXString ret("0x%3%2%1"); 00104 #endif 00105 return ret.arg(data.longlong[0]).arg(data.longlong[1]).arg(data.longlong[2]); 00106 }
|