Results 765 comments of daxpedda

I have a new and improved PR up for `MontgomeryScalar`: #1306.

Its currently relying on https://github.com/RustCrypto/elliptic-curves/pull/1306. I could try to extract `MontgomeryScalar` from #1306 to make it easily reviewable first if that's desirable.

> I tried a small margin at first but could not get it to work on my machine, so I grabbed a margin which I thought was large enough to...

I not yet back to maintaining `wasm-bindgen` so my time is quite limited right now, I'll leave this to the other maintainers to decide. My 2¢: making a release is...

You asking for it here was the request. But please open a tracking issue so it doesn't get lost!

From the documentation I can't seem to be able to definitely say that all code execution is halted after `onStop`, it seems more similar to iOS in that regard, that...

I did some research on OCSP, this is actually quiet important. Especially when we go production in CV, we have to be able to protect ourselves against a compromise of...

Blocking in Web workers is fine, it's just not allowed in the main thread (the `Window` context). If blocking in the main thread is considered UB is a complicated question....

> In any case, without digging more into this and finding a general solution, the easiest way for `async-channel` is probably to detect if you are in the main thread...

The [Prioritized Task Scheduling API](https://developer.mozilla.org/en-US/docs/Web/API/Prioritized_Task_Scheduling_API) is currently the solution to this problem, but is unfortunately only supported by Chrome so far, but Firefox [is working on it](https://mozilla.github.io/standards-positions/#scheduling-api). The nested call...