textual changes, one fix for overflows when sending OLD frames. Now inform and breaks like MIXED/NG does. Improved hf mf autopwn to detect static encrypted nonces and inform user. Last fix is the user abort during check keys steps in autopwn. The device side now detects and cancels if no card is available and on client it also allows to user abort

This commit is contained in:
iceman1001 2025-03-22 13:14:37 +01:00
commit c8d46a2a7c
7 changed files with 155 additions and 116 deletions

View file

@ -557,9 +557,8 @@ void reverse_arraybytes(uint8_t *arr, size_t len) {
}
}
void reverse_arraybytes_copy(uint8_t *arr, uint8_t *dest, size_t len) {
size_t i;
for (i = 0; i < len ; i++) {
void reverse_arraybytes_copy(const uint8_t *arr, uint8_t *dest, size_t len) {
for (size_t i = 0; i < len ; i++) {
dest[i] = reflect8(arr[i]);
}
}