make style

This commit is contained in:
iceman1001 2022-04-09 18:48:13 +02:00
commit 8d9dd8b346
12 changed files with 238 additions and 164 deletions

View file

@ -43,7 +43,7 @@
#if defined(__APPLE__) || defined(__MACH__)
#else
#include "detectaes.h"
#include "detectaes.h"
#endif
@ -383,11 +383,11 @@ int main(int argc, char *argv[]) {
printf("Crypto algo............ " _GREEN_("%s") "\n", algostr);
printf("LCR Random generator... " _GREEN_("%s") "\n", generators[g_idx].Name);
#if defined(__APPLE__) || defined(__MACH__)
#else
bool support_aesni = platform_aes_hw_available();
printf("AES-NI detected........ " _GREEN_("%s") "\n", (support_aesni) ? "yes" : "no");
#endif
#if defined(__APPLE__) || defined(__MACH__)
#else
bool support_aesni = platform_aes_hw_available();
printf("AES-NI detected........ " _GREEN_("%s") "\n", (support_aesni) ? "yes" : "no");
#endif
printf("Starting timestamp..... ");
print_time(start_time);