John Doering

Results 58 comments of John Doering

Doesn't matter. They don't like it anyway thinking it's an IRC bot. The wallet uses IRC for peer discovery only, but they don't seem to care.

Use Phoenixcoin Lite if there are problems with your anti-virus software.

The WIN64 part is due to different register preservation and argument passing on Windows and UNIX. I'm not familiar how Cygwin manages this part, but it's possible that it needs...

Does it work if compiled in the 32-bit mode?

OpenSSL v1.1.x is untested with PXC currently, though v1.0.x should work fine. It isn't the first time Boost breaks things, though v1.65.1 seems to work fine without the patch.

Would you make a pull request?

`bignum.h:61 BIGNUM *self = nullptr;` seems to break C++03 compatibility. Replaced nullptr with NULL. The rest seems fine.

Thanks, I plan to add the AVX/XOP assembly code in the future and may use your inline assembly as a reference. SSE2 4-way is also going to be improved.

If you define -DASM, you have to assemble neoscrypt_asm.S and link towards neoscrypt_asm.o Scratchpad is a fixed size buffer in memory. Caller allocates and manages it. neoscrypt_4way() doesn't do memory...