Skip to content

Commit 2b68eb5

Browse files
committed
Refactor yes(crypt|power) and k12/keccak code locations
1 parent 2c80bc6 commit 2b68eb5

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
#include "base/tools/Profiler.h"
@@ -638,9 +638,9 @@ extern "C" {
638638
assert(inputSize == 0 || input != nullptr);
639639
assert(output != nullptr);
640640
alignas(16) uint64_t tempHash[8];
641-
switch (algo) {
641+
switch (algo) {
642642
case xmrig::Algorithm::RX_DEFYX: rx_sipesh_k12(tempHash, sizeof(tempHash), input, inputSize); break;
643-
case xmrig::Algorithm::RX_XLA: rx_yespower_k12(tempHash, sizeof(tempHash), input, inputSize); break;
643+
case xmrig::Algorithm::RX_XLA: rx_yespower_k12(tempHash, sizeof(tempHash), input, inputSize); break;
644644
default: rx_blake2b_wrapper::run(tempHash, sizeof(tempHash), input, inputSize);
645645
}
646646
machine->initScratchpad(&tempHash);
@@ -654,9 +654,9 @@ extern "C" {
654654
}
655655

656656
void randomx_calculate_hash_first(randomx_vm* machine, uint64_t (&tempHash)[8], const void* input, size_t inputSize, const xmrig::Algorithm algo) {
657-
switch (algo) {
657+
switch (algo) {
658658
case xmrig::Algorithm::RX_DEFYX: rx_sipesh_k12(tempHash, sizeof(tempHash), input, inputSize); break;
659-
case xmrig::Algorithm::RX_XLA: rx_yespower_k12(tempHash, sizeof(tempHash), input, inputSize); break;
659+
case xmrig::Algorithm::RX_XLA: rx_yespower_k12(tempHash, sizeof(tempHash), input, inputSize); break;
660660
default: rx_blake2b_wrapper::run(tempHash, sizeof(tempHash), input, inputSize);
661661
}
662662
machine->initScratchpad(tempHash);
@@ -673,9 +673,9 @@ extern "C" {
673673
machine->run(&tempHash);
674674

675675
// Finish current hash and fill the scratchpad for the next hash at the same time
676-
switch (algo) {
676+
switch (algo) {
677677
case xmrig::Algorithm::RX_DEFYX: rx_sipesh_k12(tempHash, sizeof(tempHash), nextInput, nextInputSize); break;
678-
case xmrig::Algorithm::RX_XLA: rx_yespower_k12(tempHash, sizeof(tempHash), nextInput, nextInputSize); break;
678+
case xmrig::Algorithm::RX_XLA: rx_yespower_k12(tempHash, sizeof(tempHash), nextInput, nextInputSize); break;
679679
default: rx_blake2b_wrapper::run(tempHash, sizeof(tempHash), nextInput, nextInputSize);
680680
}
681681
machine->hashAndFill(output, tempHash);
File renamed without changes.

0 commit comments

Comments
 (0)