From 183b07896936d7fef2bdd4d47abec660b5148da7 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Fri, 6 Sep 2024 09:40:37 +0200 Subject: [PATCH] text --- tools/hitag2crack/crack2/ht2crack2search_multi.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tools/hitag2crack/crack2/ht2crack2search_multi.c b/tools/hitag2crack/crack2/ht2crack2search_multi.c index 311b4f8f3..5e7c0fc5d 100644 --- a/tools/hitag2crack/crack2/ht2crack2search_multi.c +++ b/tools/hitag2crack/crack2/ht2crack2search_multi.c @@ -2,6 +2,13 @@ * ht2crack2search.c * this searches the sorted tables for the given RNG data, retrieves the matching * PRNG state, checks it is correct, and then rolls back the PRNG to recover the key + * + * Iceman 2024, + * This is a multi threaded version. After discussions with mwalker33 about how to make this multi threaded + * version he concluded that the file lookups would be ideal. So we don't do it inside the individual file searches but + * rather we can put each file to search in each thread instead. Come up with ways to make it faster! + * + * When testing remember OS cache fiddles with your mind and results. Running same test values will be much faster second run */ #include "ht2crackutils.h"