aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
* Remove [Admitted]; [Qed] is now under a secondGravatar Jason Gross2016-03-08
|
* Use [rewrite] rather than [change] to speed up QedGravatar Jason Gross2016-03-08
| | | | | | | | | | | | | [Opaque] tells kernel unification to defer unfolding a constant as long as possible. This is not a problem for [change], when the functions are small and directly convertible. It's disastrous for [Qed]/[Defined], which (if I understand correctly) try to unify [Opaquemul x' y'] with [mul x y] by fully unfolding [mul] and [x] and [y] before trying to unfold [Opaquemul]; when [x] and [y] are large, this takes a very long time. Rewrite avoids this by telling Coq *how* to unify [Opaquemul x' y'] with [mul x y] (namely, by unifying [Opaquemul] with [mul], and then [x] with [x'] and [y] with [y']).
* IterAssocOp : proved iter_op with function exponentialGravatar Jade Philipoom2016-03-03
|
* tweak to NumTheoryUtil so it builds on older Coq versionsGravatar Jade Philipoom2016-03-03
|
* CompleteEdwardsCurveTheorems: associativity proof that times out on QedGravatar Andres Erbsen2016-03-03
|
* Instance Fq_Integral_domain : @Integral_domain (F q) ...Gravatar Andres Erbsen2016-02-28
|
* ModularArithmetic: [field] tactic that respects opacity, prettify ↵Gravatar Andres Erbsen2016-02-28
| | | | ExtendedCoordinates, outline Edwards curve associativity
* Makefile: single-quotes for shell globbingGravatar Andres Erbsen2016-02-28
|
* generic binary exponentiation correctness proof in 3 one-linersGravatar Andres Erbsen2016-02-26
|
* ModularArithmetic: reasonable-time FieldToZ inv implementationGravatar Andres Erbsen2016-02-26
|
* Factor out some bedrock dependencies into WordUtilGravatar Jason Gross2016-02-25
| | | | Also move a definition about words, with a TODO about location, into WordUtil.
* cleanup of bounded iter_opGravatar Jade Philipoom2016-02-25
|
* efficient powmodGravatar Andres Erbsen2016-02-17
|
* update ModularArithmetic tutorialGravatar Andres Erbsen2016-02-17
|
* removed Print AssumptionsGravatar Jade Philipoom2016-02-16
|
* proved sqrt_solutions, the last remaining admit for point encodingsGravatar 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
|
* cleaned up and ported definition to solve for x ^ 2 in the curve equationGravatar Jade Philipoom2016-02-16
|
* EdDSA: tweaked l_boundGravatar Jade Philipoom2016-02-15
|
* fixed renamed files and added imports for encodingsGravatar 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
| |
* | moved two non-primality-dependent lemmas to ModularArithmeticTheorems from ↵Gravatar Jade Philipoom2016-02-15
| | | | | | | | PrimeFieldTheorems
* | a few lemmas in util about powers of 2 in Bedrock's various rewritten formsGravatar Jade Philipoom2016-02-15
| |
| * Finish seperating our specs: remove old non-specified codeGravatar Andres Erbsen2016-02-15
| |
| * remove CheckGravatar Andres Erbsen2016-02-15
|/
* Merge branch 'spec' of github.mit.edu:plv/fiat-crypto into specGravatar Jade Philipoom2016-02-15
|\
* | ported some of EdDSA25519 to new field frameworkGravatar Jade Philipoom2016-02-15
| |
* | added square roots and an assortment of lemmas about prime fields/ringsGravatar Jade Philipoom2016-02-15
| |
* | changed the name of the ring to ring, not fieldGravatar Jade Philipoom2016-02-15
| |
* | tweaks to util files, including automation for proving ↵Gravatar Jade Philipoom2016-02-15
| | | | | | | | positivity/nonnegativity in Z
| * port bounded iter_op and Edwards doubleAndAddGravatar Andres Erbsen2016-02-15
| |
| * CompleteEdwardsCurve: unifiedAddM1: Closed Under Global ContextGravatar Andres Erbsen2016-02-15
|/
* update F Coercions and tutorialGravatar Andres Erbsen2016-02-14
|
* port ModularBaseSystem.v and GF25519.v to F mGravatar 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
| |
| * Merge branch 'spec' of github.mit.edu:plv/fiat-cryptoGravatar Jade Philipoom2016-02-12
| |\ | |/ |/|
| * EdDSA25519: progress on proving PointEncoding admits; code still unorganizedGravatar Jade Philipoom2016-02-12
| |
* | workaround field with typeclass modulusGravatar Andres Erbsen2016-02-12
| |
* | fix importsGravatar Andres Erbsen2016-02-12
| |
* | document field issue re-appearingGravatar Andres Erbsen2016-02-12
| |
* | port some edwards curve theoremsGravatar Andres Erbsen2016-02-12
| |