Skip to content

Commit 03f4f06

Browse files
committed
text
1 parent cf6ec07 commit 03f4f06

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

doc/ext_flash_notes.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ External 256kbytes flash is a unique feature of the RDV4 edition.
1111
- [Page3 Layout](#page3-layout)
1212
- [RSA signature](#rsa-signature)
1313
- [backup first!](#backup-first)
14+
- [generate a signature](#generate-a-signature)
1415

1516

1617

@@ -119,3 +120,34 @@ To make a backup of the signature to file:
119120

120121
`mem dump -f flash_signature_dump -o 262015 -l 128`
121122

123+
124+
## generate a signature
125+
^[Top](#top)
126+
127+
With the latest addition of a `client/resources/pm3_generic_private_key.pem` file anyone with a modified Proxmark3 device with SPI eeprom now can add a self signed signature.
128+
129+
130+
To verify the private key pem file
131+
```
132+
cd client/resources/
133+
sha512sum -c pm3_generic_private_key.sha512.txt
134+
135+
pm3_generic_private_key.pem: OK
136+
```
137+
138+
Looking at current SPI eeprom information, run
139+
```
140+
mem info
141+
mem info -v
142+
```
143+
144+
Create a signature using the new generic private key, run
145+
```
146+
mem info -s -p client/resources/pm3_generic_private_key.pem
147+
```
148+
149+
Create a signature using the new generic private key and write it to the Proxmark3 device, run
150+
***DANGEROUS*** This will overwrite any current signature. Make sure you backup your current signature before by following instructions: [backup first!](#backup-first)
151+
```
152+
mem info -s -p client/resources/pm3_generic_private_key.pem -w
153+
```

0 commit comments

Comments
 (0)