Skip to content

Commit ac727af

Browse files
committed
Refactor yes(crypt|power) and k12/keccak code locations
1 parent 20b0ebd commit ac727af

32 files changed

+76
-254
lines changed

cmake/randomx.cmake

+6-6
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@ if (WITH_RANDOMX)
4040
src/crypto/rx/RxDataset.cpp
4141
src/crypto/rx/RxQueue.cpp
4242
src/crypto/rx/RxVm.cpp
43-
src/crypto/randomx/defyx/KangarooTwelve.c
44-
src/crypto/randomx/defyx/KeccakP-1600-reference.c
45-
src/crypto/randomx/defyx/KeccakSpongeWidth1600.c
46-
src/crypto/randomx/defyx/yescrypt-best.c
47-
src/crypto/randomx/panthera/sha256.c
48-
src/crypto/randomx/panthera/yespower-opt.c
43+
src/crypto/k12/KangarooTwelve.c
44+
src/crypto/keccak/KeccakP-1600-reference.c
45+
src/crypto/keccak/KeccakSpongeWidth1600.c
46+
src/crypto/yes/sha256.c
47+
src/crypto/yes/yescrypt-best.c
48+
src/crypto/yes/yespower-opt.c
4949
)
5050

5151
if (CMAKE_C_COMPILER_ID MATCHES MSVC)
File renamed without changes.
File renamed without changes.

src/crypto/randomx/defyx/KangarooTwelve.h src/crypto/k12/KangarooTwelve.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ and related or neighboring rights to the source code in this file.
1515
#ifndef KeccakP1600_excluded
1616

1717
#include <stddef.h>
18-
#include "align.h"
19-
#include "KeccakSpongeWidth1600.h"
18+
#include "../align.h"
19+
#include "../keccak/KeccakSpongeWidth1600.h"
2020
#include "Phases.h"
2121

2222
typedef KCP_Phases KangarooTwelve_Phases;
File renamed without changes.

src/crypto/randomx/defyx/KeccakSponge-common.h src/crypto/keccak/KeccakSponge-common.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ and related or neighboring rights to the source code in this file.
1515
#define _KeccakSpongeCommon_h_
1616

1717
#include <string.h>
18-
#include "align.h"
18+
#include "../align.h"
1919

2020
#define KCP_DeclareSpongeStructure(prefix, size, alignment) \
2121
ALIGN(alignment) typedef struct prefix##_SpongeInstanceStruct { \
File renamed without changes.
File renamed without changes.

src/crypto/randomx/panthera/insecure_memzero.h

-1
This file was deleted.

src/crypto/randomx/panthera/sha256.h

-129
This file was deleted.

src/crypto/randomx/panthera/sysendian.h

-94
This file was deleted.

src/crypto/randomx/randomx.cpp

+9-9
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4848
#include <cassert>
4949

5050
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"
5454
}
5555

5656
RandomX_ConfigurationWownero::RandomX_ConfigurationWownero()
@@ -589,9 +589,9 @@ extern "C" {
589589
assert(inputSize == 0 || input != nullptr);
590590
assert(output != nullptr);
591591
alignas(16) uint64_t tempHash[8];
592-
switch (algo) {
592+
switch (algo) {
593593
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;
595595
default: rx_blake2b(tempHash, sizeof(tempHash), input, inputSize, nullptr, 0);
596596
}
597597
machine->initScratchpad(&tempHash);
@@ -605,9 +605,9 @@ extern "C" {
605605
}
606606

607607
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) {
609609
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;
611611
default: rx_blake2b(tempHash, sizeof(tempHash), input, inputSize, nullptr, 0);
612612
}
613613
machine->initScratchpad(tempHash);
@@ -622,9 +622,9 @@ extern "C" {
622622
machine->run(&tempHash);
623623

624624
// Finish current hash and fill the scratchpad for the next hash at the same time
625-
switch (algo) {
625+
switch (algo) {
626626
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;
628628
default: rx_blake2b(tempHash, sizeof(tempHash), nextInput, nextInputSize, nullptr, 0);
629629
}
630630
machine->hashAndFill(output, RANDOMX_HASH_SIZE, tempHash);
File renamed without changes.

0 commit comments

Comments
 (0)