mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 10:37:23 -07:00
Merge pull request #2711 from emilyastranova/master
Fix incorrect header length
This commit is contained in:
commit
d100dcc847
2 changed files with 2 additions and 1 deletions
|
@ -29,6 +29,7 @@ This project uses the changelog in accordance with [keepchangelog](http://keepac
|
|||
- Added simulation function to `hf iclass legrec` (@antiklesys)
|
||||
- Added keys from Momentum firmware projects. (@onovy)
|
||||
- Added Dutch Statistics Agency default key (@eagle00789)
|
||||
- Fixed Wiegand decode with hex input dropping the first bit (@emilyastranova)
|
||||
- Changed `hf mf autopwn` - now allows for custom suffix (@zxkmm)
|
||||
|
||||
## [Orca.4.19552][2024-11-22]
|
||||
|
|
|
@ -165,7 +165,7 @@ static uint8_t get_length_from_header(wiegand_message_t *data) {
|
|||
len = 0;
|
||||
}
|
||||
|
||||
while (hfmt > 1) {
|
||||
while (hfmt > 0) {
|
||||
hfmt >>= 1;
|
||||
len++;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue