David Wong

Results 393 comments of David Wong

qDSA: * [talk](https://www.youtube.com/watch?v=2QogivcQ8FM) * [thread mailing list](https://moderncrypto.org/mail-archive/curves/2017/000918.html) * [slides (2017)](https://www.cs.ru.nl/~jrenes/talks/ecc.pdf) * [slides (2018)](https://www.internet-of-everything.fr/wp-content/uploads/2018/05/BenSmith_EcolePolytechnique_INRIA.pdf)

good resource to follow is [libhydrogen](https://github.com/jedisct1/libhydrogen/blob/master/Makefile.arduino)

* https://github.com/arduino/Arduino/wiki/Library-Manager-FAQ * https://github.com/arduino/Arduino/wiki/Arduino-IDE-1.5:-Library-specification * https://create.arduino.cc/editor * just ordered the UNO board

the DUE board uses an ARM chip: https://store.arduino.cc/usa/arduino-due

What about the following: ```python my_protocol = new(Disco) // won't work out of the box my_protocol.Authenticate_server_with_whitelist(whitelist_keys[]) // NX // or my_protocol.Authenticate_server_with_PKI(root_key) // NX // or my_protocol.Authenticate_server_with_TOFU(TOFU_list[], callback_fingerprint) // NX //...

Not the best comparison, but in general Rust errors are much easier to parse: If I would have to analyze why they have better errors, I would say that its...

This is breaking one of our repo as well, does anyone know what's the best way of fixing this? In our case it's a transitive dependency so we can't set...

ah so, there are two evaluations points (zeta and zeta * omega) which is the 2 you're seeing here. But then for each `ProofEvaluations` we have vectors of field elements...

some more information on what would be in such a type. I think it should closely look like [ChunkedPolynomial](https://github.com/o1-labs/proof-systems/blob/master/utils/src/chunked_polynomial.rs) (in that it also tracks the size of each chunk). we...

> I tried to update the Vec inside ProofEvaluations and LookupEvaluations, but not much successful. it probably would be easier to start like this: 1. create a type called `ChunkedEvaluations...