diff options
author | Jack Lloyd <[email protected]> | 2017-09-25 17:31:49 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-09-25 17:31:49 -0400 |
commit | 549c4dcc4116f3947e47f613781c0441ae499c1a (patch) | |
tree | f14fd65cf0b44fa8dbf04a517a7d33fbd63172af /src/tests/data/bn | |
parent | 1858171bb142103c79e7f44603b8213d22b38d90 (diff) |
Add a GCD test
Diffstat (limited to 'src/tests/data/bn')
-rw-r--r-- | src/tests/data/bn/divide.vec | 8 | ||||
-rw-r--r-- | src/tests/data/bn/gcd.vec | 4 |
2 files changed, 12 insertions, 0 deletions
diff --git a/src/tests/data/bn/divide.vec b/src/tests/data/bn/divide.vec index 481c0fc6c..a5470f41d 100644 --- a/src/tests/data/bn/divide.vec +++ b/src/tests/data/bn/divide.vec @@ -1,4 +1,8 @@ [Division] +In1 = 0x1234567 +In2 = 0x103 +Output = 73701 + In1 = 0x100000000000000000000000000000000000000000000000000000000000000000000000 In2 = 0x1000000000000000000000000000000000000000000000000000000000000000000000 Output = 0x100 @@ -7,6 +11,10 @@ In1 = 0x100000000000000000000000000000000000000000000000000000000000000000000000 In2 = 0x1110000000000000000000000000000000000000000000000000000000000000000000 Output = 0xF0 +In1 = 0x8000000000000000000103 +In2 = 0x1234567 +Output = 8106479557646752034 + In1 = 0x1A923B3406CBE81B093CE418F6A73107F504502B2E3D1B200762FCF6062723DE405CAB0AEA00000000000000000000000000000000 In2 = 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F010000000000000000 Output = 0x117D3DB34AD005954459BE9ABEDD0E5DEB4EA0000000000000000 diff --git a/src/tests/data/bn/gcd.vec b/src/tests/data/bn/gcd.vec new file mode 100644 index 000000000..c7f630231 --- /dev/null +++ b/src/tests/data/bn/gcd.vec @@ -0,0 +1,4 @@ +[GCD] +X = 259 +Y = 4943984437 +GCD = 259 |