08-14-2025, 05:50 PM
(08-14-2025, 04:37 PM)atom Wrote: If you can provide a proof of concept in any language and a description of how to extract the required key material (or a extraction tool), I can turn this into a real hash mode and you will get the best performance.
All this needed to work with my camera's hashing is changing this:
Code:
a0 = (((a >> 0) & 0xff) + ((a >> 8) & 0xff)) % 62;
....
...
..
To this:
Code:
a0 = ((((a >> 0) & 0xff) + ((a >> 8) & 0xff)) & 0xFF)% 62;
....
...
..
In m24900_ax-optimized.cl
Subject to testing, whi will commit as soon as I get home from work.