From 90b8c1d39ee0549d5d6af4c87ef5550481856c07 Mon Sep 17 00:00:00 2001 From: Piotr Rzeszut Date: Thu, 26 Dec 2024 03:08:17 +0100 Subject: [PATCH] Update documentation & changelog to reflect key dictionaries moved to SPIFFS from statically allocated memory --- CHANGELOG.md | 1 + doc/ext_flash_notes.md | 14 +------------- 2 files changed, 2 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 97acdd258a..ab665b5046 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/doc/ext_flash_notes.md b/doc/ext_flash_notes.md index 6a86c7778b..42a5d0829f 100644 --- a/doc/ext_flash_notes.md +++ b/doc/ext_flash_notes.md @@ -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! @@ -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)