aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
* 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
| |
* | make field on F automatically clean up the constant-vomit it expandsGravatar Andres Erbsen2016-02-11
| |
* | port some Edwards curve stuff from GF to FGravatar Andres Erbsen2016-02-11
| |
* | port several theorems from GF to FGravatar Andres Erbsen2016-02-11
| |
* | 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
* | remove a dangling AboutGravatar Andres Erbsen2016-02-07
|/
* removed lingering Check/SearchAbout statementsGravatar Jade Philipoom2016-02-07
|
* Merge branch 'master' of github.mit.edu:plv/fiat-cryptoGravatar Jade Philipoom2016-02-07
|\
* | EdDSA25519 : wrote and proved optimized PointEncoding, which encodes y and ↵Gravatar Jade Philipoom2016-02-07
| | | | | | | | the sign bit of x, then solves the curve equation for x ^ 2. Required adding several lemmas to GaloisField (and moving others there from PointFormats).
| * PointFormats: prove dangling admitGravatar Andres Erbsen2016-02-07
| |
| * Specific/GF25519: factor out lemmasGravatar Andres Erbsen2016-02-07
| |
| * Do some work pair-programming with Andres on optsGravatar Jason Gross2016-02-05
| | | | | | | | Partially pre-compile various optimizations in GF25519.
| * Update build process to use COQPATH & _CoqProjectGravatar Jason Gross2016-02-05
| | | | | | | | | | | | | | | | Removed all of the files not built by default; they can be resurrected from git history. _CoqProject is the standard way to list the files in a project and to give information to coq_makefile. COQPATH is the standard way to make use of not-yet-installed libraries that are not part of your project (i.e., you don't want to remove them when you `make clean`, etc.).
* | GaloisTheory: added lemmas useful for proving Euler's Criterion with GF. ↵Gravatar Jade Philipoom2016-02-02
| | | | | | | | NumTheoryUtil: cleanup.
* | ModualrBaseSystem: proved lingering admit in subtraction proof.Gravatar Jade Philipoom2016-01-25
|/
* NumTheoryUtil: proved Fermat's Little Theorem.Gravatar Jade Philipoom2016-01-23
|
* NumTheoryUtil : code cleanup; moved some lemmas to ZUtil.Gravatar Jade Philipoom2016-01-23
|
* Import coqprime; use it to prove Euler's criterion.Gravatar Jade Philipoom2016-01-20
|