From 3fc7d9f746fbeb60614b0f16ec230d143617e23c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Diogo=20Duarte?= Date: Sat, 5 Oct 2024 12:37:13 +0100 Subject: [PATCH] Update README.md --- proof/README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/proof/README.md b/proof/README.md index df2486f..c8568c0 100644 --- a/proof/README.md +++ b/proof/README.md @@ -8,11 +8,9 @@ Note, some lemmas are left with the tactic `admit`, which means that the lemmas The logic in the `common/` folder is that the following files provide various lemmas used throughout the correctness proofs. #### Generic files -- **EClib.ec** includes lemmas relating the implementation of elliptic curve cryptography, such as packing/unpacking. No dependencies. +- **EClib.ec** includes lemmas relating to some simple mathematical lemmas that the other files will use. No dependencies. - **Zp_25519** includes lemmas relating to the finite field of size 2^255 - 19, such as congruence over said finite field and reduction. No dependencies. -- **Zp_limbs** includes lemmas concerning the implementation of 4 limbs representations (called `valRep4` in these proofs). Some miscellaneous lemmas concerning, for example, valid pointers are also present. Depends on the above two files. - -Naturally, not all the lemmas in these files are used, but are still present as they allow for efficient modification of proofs in case of either software changes (e.g. Jasmin or Easycrypt) and if the implementation changes. +- **Zp_limbs** includes lemmas concerning the implementation of 4 limbs representations (called `valRep4` in these proofs). Depends on the above two files. #### Curve25519 files The logic behind these files is that a specification of the various "core" operations used in the X25519 are defined (`Curve25519_Specs.ec`). From these, various other related operations and lemmas are defined in another file (`Curve25519_Operations`).