File: const_test.go

package info (click to toggle)
golang-debian-vasudev-gospake2 0.2.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 248 kB
  • sloc: makefile: 19; sh: 15
file content (97 lines) | stat: -rw-r--r-- 3,121 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
package ed25519group

import (
	"math/big"
	"testing"
)

func TestQL(t *testing.T) {
	qbytes := Q.Bytes()
	lbytes := L.Bytes()

	if len(qbytes) != 32 {
		t.Errorf("Expected Q to be 32 bytes integer but found to be: %d", len(qbytes))
	}

	if len(lbytes) != 32 {
		t.Errorf("Expected Q to be 32 bytes integer but found to be: %d", len(lbytes))
	}

	qExpected := "57896044618658097711785492504343953926634992332820282019728792003956564819949"
	lExpected := "7237005577332262213973186563042994240857116359379907606001950938285454250989"

	qText := Q.Text(10)
	lText := L.Text(10)
	if qText != qExpected {
		t.Errorf("Expected Q: %s\nFound Q: %s\n", qExpected, qText)
	}

	if lText != lExpected {
		t.Errorf("Expected L: %s\nFound L: %s\n", lExpected, lText)
	}

}

func TestD(t *testing.T) {
	dExpected := "-4513249062541557337682894930092624173785641285191125241628941591882900924598840740"
	dText := D.Text(10)

	if dText != dExpected {
		t.Errorf("Expected D: %s\nFound D: %s\n", dExpected, dText)
	}
}

func TestI(t *testing.T) {
	var iExpected big.Int
	iExpected.SetString("19681161376707505956807079304988542015446066515923890162744021073123829784752", 10)

	if I.Cmp(&iExpected) != 0 {
		t.Errorf("Calculated value of I is not same as expected value\nCalculated I: %s\n", I.Text(10))
	}
}

func TestBAndXrecover(t *testing.T) {
	var byExpected, bxExpected big.Int

	bxExpected.SetString("15112221349535400772501151409588531511454012693041857206046113283949847762202", 10)
	byExpected.SetString("46316835694926478169428394003475163141307993866256225615783033603165251855960", 10)

	if Bx.Cmp(&bxExpected) != 0 {
		t.Errorf("Calculated Bx and expected Bx are not same\nCalculated: %s\n", Bx.Text(10))
	}

	if By.Cmp(&byExpected) != 0 {
		t.Errorf("Calculated By and expected By are not same\nCalculated: %s\n", By.Text(10))
	}
}

func TestBAndBase(t *testing.T) {
	var affineX, affineY big.Int
	affineX.SetString("15112221349535400772501151409588531511454012693041857206046113283949847762202", 10)
	affineY.SetString("46316835694926478169428394003475163141307993866256225615783033603165251855960", 10)

	if B.X.Cmp(&affineX) != 0 {
		t.Errorf("Calculated base point X is not same as expected: %s", B.X.Text(10))
	}

	if B.Y.Cmp(&affineY) != 0 {
		t.Errorf("Calculated base point Y is not same as expected: %s", B.Y.Text(10))
	}

	var extendedX, extendedY, extendedT big.Int
	extendedZ := big.NewInt(1)

	extendedX.SetString("15112221349535400772501151409588531511454012693041857206046113283949847762202", 10)
	extendedY.SetString("46316835694926478169428394003475163141307993866256225615783033603165251855960", 10)
	extendedT.SetString("46827403850823179245072216630277197565144205554125654976674165829533817101731", 10)
	expectedExtended := ExtendedPoint{&extendedX, &extendedY, extendedZ, &extendedT}

	if expectedExtended.Cmp(&Base) != 0 {
		t.Errorf("Calculated base point is not same as the expected base point\n")
	}

	expectedZero := ExtendedPoint{big.NewInt(0), big.NewInt(1), big.NewInt(1), big.NewInt(0)}
	if expectedZero.Cmp(&Zero) != 0 {
		t.Errorf("Calculated extended Zero is not same as expected\n")
	}
}