Login Register

Search found 3 matches

Return

by ZRimaZ
08 Dec 2021, 02:44
Jump to forum
Jump to topic

Re: Vida CEM swapping

I have a lot of p3 bins. I do not know where then pin is located - there was no need for me until now to analyse it, but I can extract pin from flash in other ways... If you can, figure out the location of the PIN in .bin. Then parse the .bin files to extract the PINS. Publish the list of PINs. Per...
by RickHaleParker
12 Dec 2021, 15:25
Jump to forum
Jump to topic

Re: Vida CEM swapping

Hi, in my case what would be the right pin? Thanks! 23 15 92 67 72 Shuffle { 3 ,1,0,2,4} = 92 15 67 23 72 . 00 01 02 03 04 ....... Placement ...... 00 01 02 03 04 00 01 02 03 04 */ Placement /* 23 15 92 67 72 */ PIN in .bin /* 03 01 00 02 04 */ Shuffle /* 92 15 67 23 72 */ PIN /*
by RickHaleParker
13 Dec 2021, 01:12
Jump to forum
Jump to topic

Re: Vida CEM swapping

Another way to write a shuffle, which I think is better is: B:P 0:3 1:1 2:0 3:2 4:4 ( .bin to Pin, 0 to 3, 1 to 1, 2 to 0, 3 to 2, 4 to 4 ). The advantages are: 1. It is easier to read and work with. 2. If you want to the reverse shuffle to get Pin to .bin: A. Flip each set, P:B 3:0 1:1 0:2 2:3 4:4 ...