aboutsummaryrefslogtreecommitdiff
path: root/src/Test/Curve25519SpecTestVectors.v
diff options
context:
space:
mode:
authorGravatar Andres Erbsen <andreser@mit.edu>2016-09-26 00:29:51 -0400
committerGravatar Andres Erbsen <andreser@mit.edu>2016-09-26 00:29:51 -0400
commit4df54112680e25dc797569317862f5abbf941b28 (patch)
treeca9f91799ca2f7b9b4045073e7e38de02f8f5272 /src/Test/Curve25519SpecTestVectors.v
parenta4d5dfeb5e6b5eb9289ecb6643c4ba747dde97ca (diff)
add Montgomery x-coordinate Diffie-Hellman and Curve25519
Diffstat (limited to 'src/Test/Curve25519SpecTestVectors.v')
-rw-r--r--src/Test/Curve25519SpecTestVectors.v22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/Test/Curve25519SpecTestVectors.v b/src/Test/Curve25519SpecTestVectors.v
new file mode 100644
index 000000000..511998d48
--- /dev/null
+++ b/src/Test/Curve25519SpecTestVectors.v
@@ -0,0 +1,22 @@
+(* Test vectors from <https://tools.ietf.org/html/rfc7748#section-5.2>,
+ with hex values converted to decimal using python like this:
+ > int.from_bytes(binascii.unhexlify('deadbeef'), 'little') *)
+Require Import Spec.ModularArithmetic Spec.MxDH Crypto.Util.Decidable.
+Definition F := F (2^255 - 19).
+Definition a : F := F.of_Z _ 486662.
+Definition a24 : F := ((a - F.of_Z _ 2) / F.of_Z _ 4)%F.
+Definition cswap {T} (swap:bool) (a b:T) := if swap then (b, a) else (a, b).
+Definition monty : BinNums.N -> F -> F := @MxDH.montladder F F.zero F.one F.add F.sub F.mul F.div a24 BinNums.N BinNat.N.testbit_nat cswap 255.
+
+Example one_basepoint : F.to_Z (monty 1 (F.of_Z _ 9)) = 9%Z.
+Proof. vm_decide_no_check. Qed.
+
+Example testvector_one : F.to_Z (monty
+ 31029842492115040904895560451863089656472772604678260265531221036453811406496%N
+ (F.of_Z _ 34426434033919594451155107781188821651316167215306631574996226621102155684838%Z)) = 37325765543539916631701301279660700968428932651319597985674090122993663859395%Z.
+Proof. vm_decide_no_check. Qed.
+
+Example testvector_two : F.to_Z (monty
+ 35156891815674817266734212754503633747128614016119564763269015315466259359304%N
+ (F.of_Z _ 8883857351183929894090759386610649319417338800022198945255395922347792736741%Z)) = 39566196721700740701373067725336211924689549479508623342842086701180565506965%Z.
+Proof. vm_decide_no_check. Qed. \ No newline at end of file