zbackup/hex.hh

12 lines
283 B
C++
Raw Normal View History

// Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE
2013-07-18 21:33:25 +04:00
#ifndef HEX_HH_INCLUDED__
#define HEX_HH_INCLUDED__
#include <string>
/// Converts 'size' bytes pointed to by 'in' into a hex string
std::string toHex( unsigned char const * in, unsigned size );
#endif