Implemented CryptoNight with C++ templates.

This commit is contained in:
XMRig 2017-06-08 23:31:42 +03:00
parent 878e021ff6
commit 8b83a5fe2e
6 changed files with 242 additions and 66 deletions

View file

@ -178,6 +178,10 @@ Options::Options(int argc, char **argv) :
m_pass = strdup("x");
}
if (m_algoVariant == AV2_AESNI_DOUBLE || m_algoVariant == AV4_SOFT_AES_DOUBLE) {
m_doubleHash = true;
}
m_ready = true;
}