I'm using flash encryption and try to access encrypted partition.
First of all I've created data partition with size 0x1000 (4KB) and encrypted flag.
Secondly I've allocated 4KB buffer, filled it with 0xFF and set contents of first 48 bytes to some known values (to check them later). These bytes were:
Code: Select all
00 00 30 31 32 33 34 35 36 37 38 39 3a 3b 3c 3d
3e 3f 40 41 42 43 44 45 46 47 48 49 4a 4b 4c 4d
4e 4f 00 f8 60 5b 80 d2 b8 5d 00 00 c0 13 c3 1f
Now I'm trying to read partition using esp_partition_read. This call also succeeds, but contents of buffer seems to be still encrypted. First 128 bytes looks like this:
Code: Select all
5f 8a b7 cb 16 9d 1f 40 cc c0 34 76 c4 ba 3d bf
5c ce 81 53 ba 02 dc ba be de b7 14 80 44 94 03
55 ed 28 a4 fd d1 0f 55 d5 3a c5 d2 2a cb ed bf
fb df 3e 4d ac 5e 64 b3 10 77 53 7c 46 a9 9f 12
fb df 3e 4d ac 5e 64 b3 10 77 53 7c 46 a9 9f 12
fb df 3e 4d ac 5e 64 b3 10 77 53 7c 46 a9 9f 12
fb df 3e 4d ac 5e 64 b3 10 77 53 7c 46 a9 9f 12
fb df 3e 4d ac 5e 64 b3 10 77 53 7c 46 a9 9f 12
Or maybe I'm doing something wrong?