mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-10 22:17:57 -05:00
14 lines
294 B
C++
14 lines
294 B
C++
|
|
#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;
|
|
}
|