-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshake_test.go
48 lines (43 loc) · 1.28 KB
/
shake_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
package crypto
import (
"reflect"
"testing"
)
var shakeTestCases = []struct {
hasher Hasher
input [][]byte
expected string
}{
{&Shake256Hasher{}, nil, "46b9dd2b0ba88d13233b3feb743eeb243fcd52ea62b81b82b50c27646ed5762f"},
{&Shake256Hasher{}, [][]byte{{}}, "46b9dd2b0ba88d13233b3feb743eeb243fcd52ea62b81b82b50c27646ed5762f"},
{&Shake256Hasher{}, [][]byte{[]byte("asdf")}, "f00c15643396616a89a0cb79039f740575defe9dbe307cccdaf8ae210e1c9cc6"},
{&Shake256Hasher{}, [][]byte{[]byte("asdf"), []byte("qwer")}, "c37f508e9af6afc86f9a768c15553036b7df09ba6d6fb3a836c1aa9a3bfc2b27"},
}
func TestShakeHasherHex(t *testing.T) {
for _, tt := range shakeTestCases {
t.Run(tt.expected, func(t *testing.T) {
result := tt.hasher.HashHex(tt.input...)
if result != tt.expected {
t.Errorf("Got %s, want %s", result, tt.expected)
}
})
}
}
func TestShakeHasherHash(t *testing.T) {
for _, tt := range shakeTestCases {
t.Run(tt.expected, func(t *testing.T) {
result := tt.hasher.Hash(tt.input...)
expected, _ := FromHex(tt.expected)
if !reflect.DeepEqual(expected, result) {
t.Errorf("Got %s, want %s", result, expected)
}
})
}
}
func BenchmarkShake256(b *testing.B) {
hasher := Shake256Hasher{}
b.ResetTimer()
for i := 0; i < b.N; i++ {
hasher.Hash([]byte("qwerty"))
}
}