Files
MP-SPDZ/Tools/pprint.h
Marcel Keller 78fe3d8bad Maintenance.
2024-07-09 12:19:52 +10:00

18 lines
350 B
C++

#ifndef TOOLS_PPRINT_H_
#define TOOLS_PPRINT_H_
#include <iostream>
#include <iomanip>
using namespace std;
inline void pprint_bytes(const char *label, unsigned char *bytes, int len)
{
cout << label << ": ";
for (int j = 0; j < len; j++)
cout << setfill('0') << setw(2) << hex << (int) bytes[j];
cout << dec << endl;
}
#endif