blob: d1c55f304f35ecf59f9acd79f7482fc41b07ef21 [file] [log] [blame]
/**
* Copyright (C) 2013 Regents of the University of California.
* @author: Jeff Thompson <jefft0@remap.ucla.edu>
* See COPYING for copyright and distribution information.
*/
#include <sstream>
#include "common.hpp"
using namespace std;
namespace ndn {
string
toHex(const vector<unsigned char>& array)
{
if (!&array)
return "";
ostringstream result;
result.flags(ios::hex | ios::uppercase);
for (unsigned int i = 0; i < array.size(); ++i) {
unsigned char x = array[i];
if (x < 16)
result << '0';
result << (unsigned int)x;
}
return result.str();
}
}