Skip to content

Commit

Permalink
Monero format: Don't claim we use SSE4.1 in 32-bit builds
Browse files Browse the repository at this point in the history
  • Loading branch information
solardiz committed Mar 1, 2025
1 parent b55f339 commit 248c292
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/monero_fmt_plug.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,10 @@ john_register_one(&fmt_monero);
#define ALGORITHM_NAME "Pseudo-AES/Keccak/BLAKE/Groestl/JH/Skein/ChaCha 8/" ARCH_BITS_STR
#if __AVX__
#define ALGORITHM_NAME_AESNI "Pseudo-AES/Keccak/BLAKE/Groestl/JH/Skein/ChaCha 128/128 AVX AES-NI"
#else
#elif __x86_64__ /* our asm code uses SSE4.1 */
#define ALGORITHM_NAME_AESNI "Pseudo-AES/Keccak/BLAKE/Groestl/JH/Skein/ChaCha 128/128 SSE4.1 AES-NI"
#else /* we use SSE2 intrinsics */
#define ALGORITHM_NAME_AESNI "Pseudo-AES/Keccak/BLAKE/Groestl/JH/Skein/ChaCha 128/128 SSE2 AES-NI"
#endif
#define BENCHMARK_COMMENT ""
#define BENCHMARK_LENGTH 7
Expand Down

0 comments on commit 248c292

Please sign in to comment.