cubehash: remove forgotten debugging

This commit is contained in:
Mirek Kratochvil 2013-09-29 20:34:05 +02:00
parent 20b73496d7
commit d48665750a

View file

@ -30,8 +30,6 @@
#define ROT(a,b,n) (((a) << (b)) | ((a) >> (n - b)))
#define i16(cmd) for(i=0;i<16;++i) cmd;
#include "iohelpers.h"
template < int I, //initialization rounds
int R, //rounds
int B, //input block size, less or equal 128
@ -94,8 +92,6 @@ public:
}
void get_hash (byte*out) {
std::cout << std::hex;
for (int i = 0; i < 32; ++i) out (X[i]);
for (int i = 0; i < H; ++i)
out[i] = (X[i / 4] >> ( (i % 4) * 8) ) & 0xff;
}