-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsigner_test.go
93 lines (84 loc) · 1.87 KB
/
signer_test.go
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
package signer_test
import (
"testing"
"github.com/as/signer"
)
func TestBasicSignVerify(t *testing.T) {
s, err := signer.New([]byte("0123456789abcdef0123456789abcdef"))
if err != nil {
panic(err)
}
const input = "hello world"
tok, err := s.Sign([]byte(input), nil)
ck(t, "sign", err)
p, err := s.Verify(tok)
ck(t, "verify", err)
if string(p) != input {
t.Fatalf("have %q, want %q", string(p), input)
}
}
// TestAdversary ensures that modifying any part of the token is detectable
func TestAdversary(t *testing.T) {
s, err := signer.New(vectorTab[0].key[:])
if err != nil {
panic(err)
}
for _, tc := range [...]struct {
name string
at int
}{
{"version", 0},
{"nonce", 1},
{"ciphertext", 1 + 24},
{"tag", 65536},
} {
t.Run(tc.name, func(t *testing.T) {
tok := []byte(vectorTab[0].binary)
i := tc.at
if i > len(tok) {
i = len(tok) - 1
}
tok[i] = '\t'
_, err := s.Verify(tok)
if err == nil {
t.Fatalf("adversary modified %s with no error", tc.name)
}
})
}
}
func TestWellKnownVector(t *testing.T) {
// see vector_test.go for test table
for _, z := range vectorTab {
s, err := signer.New(z.key[:])
if err != nil {
panic(err)
}
tok, err := s.Sign([]byte(z.input), z.nonce[:])
if err != nil {
t.Fatalf("sign: %v", err)
}
if testPrint {
t.Logf("token: binary: %q", []byte(tok))
t.Logf("token: string: %q", tok.String())
}
have := string([]byte(tok))
if have != z.binary {
t.Fatalf("binary encoding: have %q, want %q", have, z.binary)
}
have = tok.String()
if have != z.text {
t.Fatalf("string encoding: have %q, want %q", have, z.text)
}
p, err := s.Verify(tok)
ck(t, "verify", err)
if string(p) != string(z.input[:]) {
t.Fatalf("have %q, want %q", string(p), z.input)
}
}
}
func ck(t *testing.T, ctx string, err error) {
t.Helper()
if err != nil {
t.Fatalf(ctx, err)
}
}