FXString FX::Secure::TigerHashValue::asString (  )  const [inline]

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         }


(C) 2002-2009 Niall Douglas. Some parts (C) to assorted authors.
Generated on Fri Nov 20 18:38:04 2009 for TnFOX by doxygen v1.4.7