Continuing the discussion from Cool NEM Facts FTW:
Actually we can offer reward of 1M XEM (out of my pocket) to the person that’ll find it, but keep in mind this might be a futile task.
- Valid until block 570_000
- 256-bit Sha3 code used in NEM : https://github.com/NewEconomyMovement/vanitygen-cpp
int sha256(unsigned char *out, const unsigned char *in, unsigned long long inlen)
{
Keccak_HashInstance _hctx, *hctx = &_hctx;
Keccak_HashInitialize_SHA3_256(hctx);
Keccak_HashUpdate(hctx, in, inlen * 8);
Keccak_HashSqueeze(hctx, out, 256);
return 0;
}