We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b55f339 commit 248c292Copy full SHA for 248c292
src/monero_fmt_plug.c
@@ -38,8 +38,10 @@ john_register_one(&fmt_monero);
38
#define ALGORITHM_NAME "Pseudo-AES/Keccak/BLAKE/Groestl/JH/Skein/ChaCha 8/" ARCH_BITS_STR
39
#if __AVX__
40
#define ALGORITHM_NAME_AESNI "Pseudo-AES/Keccak/BLAKE/Groestl/JH/Skein/ChaCha 128/128 AVX AES-NI"
41
-#else
+#elif __x86_64__ /* our asm code uses SSE4.1 */
42
#define ALGORITHM_NAME_AESNI "Pseudo-AES/Keccak/BLAKE/Groestl/JH/Skein/ChaCha 128/128 SSE4.1 AES-NI"
43
+#else /* we use SSE2 intrinsics */
44
+#define ALGORITHM_NAME_AESNI "Pseudo-AES/Keccak/BLAKE/Groestl/JH/Skein/ChaCha 128/128 SSE2 AES-NI"
45
#endif
46
#define BENCHMARK_COMMENT ""
47
#define BENCHMARK_LENGTH 7
0 commit comments