@@ -48,9 +48,9 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
48
48
#include < cassert>
49
49
50
50
extern " C" {
51
- #include " crypto/randomx/defyx /yescrypt.h"
52
- #include " crypto/randomx/panthera /yespower.h"
53
- #include " crypto/randomx/defyx /KangarooTwelve.h"
51
+ #include " crypto/yes /yescrypt.h"
52
+ #include " crypto/yes /yespower.h"
53
+ #include " crypto/k12 /KangarooTwelve.h"
54
54
}
55
55
56
56
RandomX_ConfigurationWownero::RandomX_ConfigurationWownero ()
@@ -589,9 +589,9 @@ extern "C" {
589
589
assert (inputSize == 0 || input != nullptr );
590
590
assert (output != nullptr );
591
591
alignas (16 ) uint64_t tempHash[8 ];
592
- switch (algo) {
592
+ switch (algo) {
593
593
case xmrig::Algorithm::RX_DEFYX: rx_sipesh_k12 (tempHash, sizeof (tempHash), input, inputSize); break ;
594
- case xmrig::Algorithm::RX_XLA: rx_yespower_k12 (tempHash, sizeof (tempHash), input, inputSize); break ;
594
+ case xmrig::Algorithm::RX_XLA: rx_yespower_k12 (tempHash, sizeof (tempHash), input, inputSize); break ;
595
595
default : rx_blake2b (tempHash, sizeof (tempHash), input, inputSize, nullptr , 0 );
596
596
}
597
597
machine->initScratchpad (&tempHash);
@@ -605,9 +605,9 @@ extern "C" {
605
605
}
606
606
607
607
void randomx_calculate_hash_first (randomx_vm* machine, uint64_t (&tempHash)[8], const void* input, size_t inputSize, const xmrig::Algorithm algo) {
608
- switch (algo) {
608
+ switch (algo) {
609
609
case xmrig::Algorithm::RX_DEFYX: rx_sipesh_k12 (tempHash, sizeof (tempHash), input, inputSize); break ;
610
- case xmrig::Algorithm::RX_XLA: rx_yespower_k12 (tempHash, sizeof (tempHash), input, inputSize); break ;
610
+ case xmrig::Algorithm::RX_XLA: rx_yespower_k12 (tempHash, sizeof (tempHash), input, inputSize); break ;
611
611
default : rx_blake2b (tempHash, sizeof (tempHash), input, inputSize, nullptr , 0 );
612
612
}
613
613
machine->initScratchpad (tempHash);
@@ -622,9 +622,9 @@ extern "C" {
622
622
machine->run (&tempHash);
623
623
624
624
// Finish current hash and fill the scratchpad for the next hash at the same time
625
- switch (algo) {
625
+ switch (algo) {
626
626
case xmrig::Algorithm::RX_DEFYX: rx_sipesh_k12 (tempHash, sizeof (tempHash), nextInput, nextInputSize); break ;
627
- case xmrig::Algorithm::RX_XLA: rx_yespower_k12 (tempHash, sizeof (tempHash), nextInput, nextInputSize); break ;
627
+ case xmrig::Algorithm::RX_XLA: rx_yespower_k12 (tempHash, sizeof (tempHash), nextInput, nextInputSize); break ;
628
628
default : rx_blake2b (tempHash, sizeof (tempHash), nextInput, nextInputSize, nullptr , 0 );
629
629
}
630
630
machine->hashAndFill (output, RANDOMX_HASH_SIZE, tempHash);
0 commit comments