aboutsummaryrefslogtreecommitdiff
path: root/src/Spec
Commit message (Collapse)AuthorAge
...
* Reorganization and revision of Encoding code and redefinition of sign_bit ↵Gravatar jadep2016-04-25
| | | | function.
* point_eq_decGravatar Andres Erbsen2016-04-22
|
* ed25519: continue derivationGravatar Andres Erbsen2016-04-08
|
* Drop second projections in Ed25519Gravatar Jason Gross2016-03-29
|
* ed25519 derivation: pair programming with jgross... slow progressGravatar Andres Erbsen2016-03-24
|
* nicer verify() derivation starterGravatar Andres Erbsen2016-03-21
|
* instantiate ed25519 sign in specGravatar Andres Erbsen2016-03-20
|
* Ed25519: d is nonsquareGravatar Andres Erbsen2016-03-20
|
* Finish absolutizing importsGravatar Jason Gross2016-03-10
| | | | | | | | | | | | The file coqprime/Coqprime/ListAux.v was importing List, which was confusing machines on which mathclasses was also installed. Using https://github.com/JasonGross/coq-tools ```bash make -kj10 cd src git ls-files "*.v" | xargs python ~/Documents/repos/coq-tools/absolutize-imports.py -i -R . Crypto ```
* Factor out some bedrock dependencies into WordUtilGravatar Jason Gross2016-02-25
| | | | Also move a definition about words, with a TODO about location, into WordUtil.
* efficient powmodGravatar Andres Erbsen2016-02-17
|
* removed Print AssumptionsGravatar Jade Philipoom2016-02-16
|
* moved some theorems requiring q mod 8 = 5 precondition to PointEncoding from ↵Gravatar Jade Philipoom2016-02-16
| | | | CompleteEdwardsCurve, where the precondition is not in scope.
* proved most of point encoding admits, fixed some build system issues (dead ↵Gravatar Jade Philipoom2016-02-16
| | | | imports of PointFormats and Galois things)
* added point encodings; some admits remainGravatar Jade Philipoom2016-02-16
|
* EdDSA: tweaked l_boundGravatar Jade Philipoom2016-02-15
|
* mergeGravatar Jade Philipoom2016-02-15
|\
* | instantiated FqEncoding and FlEncoding (also fixed indentation, which is why ↵Gravatar Jade Philipoom2016-02-15
| | | | | | | | the commit looks huge)
* | added generic encoding specGravatar Jade Philipoom2016-02-15
| |
| * Finish seperating our specs: remove old non-specified codeGravatar Andres Erbsen2016-02-15
|/
* ported some of EdDSA25519 to new field frameworkGravatar Jade Philipoom2016-02-15
|
* update F Coercions and tutorialGravatar Andres Erbsen2016-02-14
|
* Spec/EdDSA: comments, remove prehashingGravatar Andres Erbsen2016-02-13
|
* Spec/EdDSA: cleanup; refactor lemmas to src/EdDSAProofs.vGravatar Andres Erbsen2016-02-13
|
* prove existance of F inv, implement pow -- CompleteEdwardsCurve.unifiedAdd ↵Gravatar Andres Erbsen2016-02-13
| | | | Closed Under Global Context
* Merge branch 'master' into specGravatar Jade Philipoom2016-02-13
|\
| * EdDSA spec ported over to new field implementationGravatar Jade Philipoom2016-02-13
| |
* | implement F_oppGravatar Andres Erbsen2016-02-12
|/
* document field issue re-appearingGravatar Andres Erbsen2016-02-12
|
* port some edwards curve theoremsGravatar Andres Erbsen2016-02-12
|
* Define F m, a replacement for GF with several benefits.Gravatar Andres Erbsen2016-02-11
| | | | | | | | | | | | | - F has a human readable complete specification - F is a parametric type, not a parametric module - Different F instances can be disambiguated by type inference, which is more conventient that notation scopes. - F has significant support for non-prime moduli - It should be relatively easy to port existing GF code to F. Since the repository currently contains code referencing both F and GF, it makes sense to keep the names different for now. Later, F may or may not be renamed to GF.
* fresh take at specifications using implicit arguments instead of module ↵Gravatar Andres Erbsen2016-02-07
parameters