Hacker News new | ask | show | jobs
by StressedDev 766 days ago
Side channels are a huge danger. An example is cryptographic functions have been cracked because of timing differences based on the key or data being encrypted. This is why cryptographic ciphers are implemented in constant time code (i.e. code that always runs in the same amount of time regardless of its input).
1 comments

I'm talking about the specific side channel attack mentioned in their report. Not side channels generally ;)