summaryrefslogtreecommitdiffstats
path: root/lib/rsa_test.go
diff options
context:
space:
mode:
authorsiddharth ravikumar <s@ricketyspace.net>2022-08-11 20:30:53 -0400
committersiddharth ravikumar <s@ricketyspace.net>2022-08-11 20:30:53 -0400
commite12ccae7a96c01dce5e86aa17c27e20644c75a15 (patch)
tree86aa7a239277ba7d86e1110faa73a45eae329023 /lib/rsa_test.go
parentc8bfbfb85e368511a033561cd68f7e86f14fcde7 (diff)
lib: add invmod
Diffstat (limited to 'lib/rsa_test.go')
-rw-r--r--lib/rsa_test.go24
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/rsa_test.go b/lib/rsa_test.go
index ee71755..4f65468 100644
--- a/lib/rsa_test.go
+++ b/lib/rsa_test.go
@@ -50,3 +50,27 @@ func TestEGCD(t *testing.T) {
}
}
+
+func TestInvMod(t *testing.T) {
+ a := big.NewInt(17)
+ b := big.NewInt(3120)
+ e := big.NewInt(2753) // Expected inverse.
+ i, err := invmod(a, b)
+ if err != nil {
+ t.Errorf("invmod(%v,%v) failed: %v", a, b, err)
+ }
+ if i.Cmp(e) != 0 {
+ t.Errorf("gcd(%v,%v) != %v", a, b, e)
+ }
+
+ a = big.NewInt(240)
+ b = big.NewInt(47)
+ e = big.NewInt(19) // Expected inverse.
+ i, err = invmod(a, b)
+ if err != nil {
+ t.Errorf("invmod(%v,%v) failed: %v", a, b, err)
+ }
+ if i.Cmp(e) != 0 {
+ t.Errorf("gcd(%v,%v) != %v", a, b, e)
+ }
+}