Skip to content

Commit

Permalink
Update documentation & changelog to reflect key dictionaries moved to…
Browse files Browse the repository at this point in the history
… SPIFFS from statically allocated memory
  • Loading branch information
piotrva committed Dec 26, 2024
1 parent 34883cf commit 90b8c1d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 13 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ All notable changes to this project will be documented in this file.
This project uses the changelog in accordance with [keepchangelog](http://keepachangelog.com/). Please use this to write notable changes, which is not the same as git commit log...

## [unreleased][unreleased]
- move flash-stored key dictionaries (Mifare, iClass, T55XX) to SPIFFS files (@piotrva)
- Added support for connection to host device in all Docker envs (@doegox)
- Changed `hf 15 info` to show all type matches and check ST25TVxC signature (@doegox)
- Added initial support for ST25TN and its signature verification (@doegox)
Expand Down
14 changes: 1 addition & 13 deletions doc/ext_flash_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Page 2:
* to erase it: `mem wipe p 2`

Page 3:
* used by Proxmark3 RDV4 specific functions: flash signature and keys dictionaries, see below for details
* used by Proxmark3 RDV4 specific functions: flash signature and configurations, see below for details
* to dump it: `mem dump -f page3_dump -o 196608 -l 65536`
* to erase it:
* **Beware** it will erase your flash signature so better to back it up first as you won't be able to regenerate it by yourself!
Expand All @@ -62,18 +62,6 @@ Page 3:

Page3 is used as follows by the Proxmark3 RDV4 firmware:

* **MF_KEYS**
* offset: page 3 sector 5 (0x5) @ 3*0x10000+5*0x1000=0x35000
* length: 6 sectors

* **ICLASS_KEYS**
* offset: page 3 sector 11 (0xB) @ 3*0x10000+11*0x1000=0x3B000
* length: 1 sector

* **T55XX_KEYS**
* offset: page 3 sector 12 (0xC) @ 3*0x10000+12*0x1000=0x3C000
* length: 1 sector

* **T55XX_CONFIG**
* offset: page 3 sector 13 (0xD) @ 3*0x10000+13*0x1000=0x3D000
* length: 1 sector (actually only a few bytes are used to store `t55xx_config` structure)
Expand Down

0 comments on commit 90b8c1d

Please sign in to comment.