pull down to refresh
reply
I think we can use STM32 UIDs to identify legitimate coin owners
That might be hard. Only 32 bits of the UID are used and it's also XORed with SysTick.
pad = UID_low32 ^ SysTick->VAL;pull down to refresh
I think we can use STM32 UIDs to identify legitimate coin owners
That might be hard. Only 32 bits of the UID are used and it's also XORed with SysTick.
pad = UID_low32 ^ SysTick->VAL;
I had not read the Block report before. But this changes things.
If the entropy is sourced from timers that count from zero at boot, then an attacker is more likely to find a wallet by brute-forcing small timer values.
And also a correlation between SysTick and RTC might bring the effective bits of entropy down.