Hacker News new | ask | show | jobs
by acveilleux 3900 days ago
For crypto-primitives, you usually want them to be constant-time. This is basically impossible to do in an interpreter or a JIT, indeed optimizing compilers can and will optimize contant-time operations out so inline assembly is commonly used.
1 comments

Thank you for the info!