aboutsummaryrefslogtreecommitdiff
path: root/src/Specific/solinas32_2e384m2e128m2e96p2e32m1_18limbs/CurveParameters.v
diff options
context:
space:
mode:
Diffstat (limited to 'src/Specific/solinas32_2e384m2e128m2e96p2e32m1_18limbs/CurveParameters.v')
-rw-r--r--src/Specific/solinas32_2e384m2e128m2e96p2e32m1_18limbs/CurveParameters.v39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/Specific/solinas32_2e384m2e128m2e96p2e32m1_18limbs/CurveParameters.v b/src/Specific/solinas32_2e384m2e128m2e96p2e32m1_18limbs/CurveParameters.v
deleted file mode 100644
index a5920a711..000000000
--- a/src/Specific/solinas32_2e384m2e128m2e96p2e32m1_18limbs/CurveParameters.v
+++ /dev/null
@@ -1,39 +0,0 @@
-Require Import Crypto.Specific.Framework.RawCurveParameters.
-Require Import Crypto.Util.LetIn.
-
-(***
-Modulus : 2^384 - 2^128 - 2^96 + 2^32 - 1
-Base: 21 + 1/3
-***)
-
-Definition curve : CurveParameters :=
- {|
- sz := 18%nat;
- base := 21 + 1/3;
- bitwidth := 32;
- s := 2^384;
- c := [(1, 1); (2^32, -1); (2^96, 1); (2^128, 1)];
- carry_chains := Some [[5; 3; 0; 17]; [6; 4; 1; 0; 7; 5; 2; 8; 3; 9; 10; 11; 12; 13; 14; 15; 16; 17]; [6; 4; 1; 0]]%nat;
-
- a24 := None;
- coef_div_modulus := Some 2%nat;
-
- goldilocks := None;
- karatsuba := None;
- montgomery := false;
- freeze := Some true;
- ladderstep := false;
-
- mul_code := None;
-
- square_code := None;
-
- upper_bound_of_exponent_loose := None;
- upper_bound_of_exponent_tight := None;
- allowable_bit_widths := None;
- freeze_extra_allowable_bit_widths := None;
- modinv_fuel := None
- |}.
-
-Ltac extra_prove_mul_eq _ := idtac.
-Ltac extra_prove_square_eq _ := idtac.