Manuel Pégourié-Gonnard

Results 243 comments of Manuel Pégourié-Gonnard

Note: perhaps using the macros can help with code size as well, as it would avoid the extra calls to `mpi_mod_mpi()`. Currently this change adds about 300 bytes of code...

> implementing option 2 even though we agreed on option 1? It was only two more lines of code, so I felt it was OK. Actually it was not just...

Also, I'm not sure if this needs a ChangeLog entry: it's not really user-visible, so I'm inclined to say no, please tell if you disagree.

Note: there are also uses of `MBEDTLS_ALLOW_PRIVATE_ACCESS` in programs, though it's mostly testing programs (`programs/fuzz`, `programs/test`, some under `programs/ssl`) as opposed to demo programs, so that's probably OK.

Here's the output of the "normal" ECDH block in full config: ``` ECDHE-secp521r1 : 144 full handshake/s ECDHE-brainpoolP512r1 : 18 full handshake/s ECDHE-secp384r1 : 219 full handshake/s ECDHE-brainpoolP384r1 : 38...

When it comes to ECC computations, broadly speaking there are three things: 1. Generic scalar multiplication (GM): s * P where P is not know in advance. 2. Scalar multiplication...

> Consists of two parts: > * The change itself - fragmenting records on the way out, defragmenting on the way in I'd say that's already two parts, and arguably...

> * **3.6 backport** ??? I'd think we want it: IIUC the point of this is to support scripts that are shared between the two projects, which means they should...

Back to scope questions: while at it, shouldn't we put the function definitions in a separate file, say `scripts/detect_project.sh` and then each script would just `source` that, instead of having...