-
Notifications
You must be signed in to change notification settings - Fork 0
/
xoroshiro_test.go
94 lines (86 loc) · 1.87 KB
/
xoroshiro_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
94
// +build go1.9
package crazy
import (
"bytes"
"crypto/rand"
"testing"
)
func TestXoroSeed(t *testing.T) {
xoro := NewXoroshiro()
xoro.SeedIV(nil)
xoro.SeedIV([]byte{7: 0})
xoro.SeedIV([]byte{15: 0})
xoro.SeedIV([]byte{23: 0})
}
func TestXoroSeedConsistency(t *testing.T) {
iv := make([]byte, 16)
xoro := NewXoroshiro()
x, y := make([]byte, 8000), make([]byte, 8000)
for i := 0; i < 1024; i++ {
rand.Read(iv)
xoro.SeedIV(iv)
xoro.Read(x)
xoro.SeedIV(iv)
xoro.Read(y)
if !bytes.Equal(x, y) {
t.Fail()
}
}
}
func TestXoroSave(t *testing.T) {
b := bytes.Buffer{}
xoro := CryptoSeeded(NewXoroshiro(), 16).(*Xoroshiro)
x, y := make([]byte, 8000), make([]byte, 8000)
for i := 0; i < 1024; i++ {
xoro.Save(&b)
xoro.Read(x)
xoro.Restore(&b)
xoro.Read(y)
if !bytes.Equal(x, y) {
t.Fail()
}
b.Reset()
}
}
func TestXoroCopy(t *testing.T) {
xoro := CryptoSeeded(NewXoroshiro(), 16).(*Xoroshiro)
x, y := make([]byte, 8000), make([]byte, 8000)
for i := 0; i < 1024; i++ {
cp := xoro.Copy()
xoro.Read(x)
cp.Read(y)
if !bytes.Equal(x, y) {
t.Fail()
}
}
}
func BenchmarkXoroshiro(b *testing.B) {
xoro := CryptoSeeded(NewXoroshiro(), 16).(*Xoroshiro)
f := func(p []byte) func(b *testing.B) {
return func(b *testing.B) {
b.SetBytes(int64(len(p)))
for n := 0; n < b.N; n++ {
xoro.Read(p)
}
}
}
b.Run("8", f(make([]byte, 8)))
b.Run("K", f(make([]byte, 1<<10)))
b.Run("M", f(make([]byte, 1<<25)))
b.Run("G", f(make([]byte, 1<<30)))
}
func BenchmarkRexoroshiro(b *testing.B) {
rexo := CryptoSeeded(NewRexoroshiro(), 16).(*Rexoroshiro)
f := func(p []byte) func(b *testing.B) {
return func(b *testing.B) {
b.SetBytes(int64(len(p)))
for n := 0; n < b.N; n++ {
rexo.Read(p)
}
}
}
b.Run("8", f(make([]byte, 8)))
b.Run("K", f(make([]byte, 1<<10)))
b.Run("M", f(make([]byte, 1<<25)))
b.Run("G", f(make([]byte, 1<<30)))
}