aboutsummaryrefslogtreecommitdiff
path: root/src/Specific/X2448/Karatsuba/C64/femul.v
blob: 2f890a88f1299fb919d1bed1329160ba9a9afc51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
Require Import Crypto.Arithmetic.PrimeFieldTheorems.
Require Import Crypto.Specific.X2448.Karatsuba.C64.Synthesis.

(* TODO : change this to field once field isomorphism happens *)
Definition mul :
  { mul : feBW -> feBW -> feBW
  | forall a b, phiBW (mul a b) = F.mul (phiBW a) (phiBW b) }.
Proof.
  Set Ltac Profiling.
  Time synthesize_mul ().
  Show Ltac Profile.
Time Defined.