-
Notifications
You must be signed in to change notification settings - Fork 0
/
xoshiro_test.go
92 lines (84 loc) · 1.74 KB
/
xoshiro_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
// +build go1.9
package crazy
import (
"bytes"
"crypto/rand"
"testing"
)
func TestXoshiSeed(t *testing.T) {
xoshi := NewXoshiro()
xoshi.SeedIV(nil)
xoshi.SeedIV([]byte{7: 0})
xoshi.SeedIV([]byte{15: 0})
xoshi.SeedIV([]byte{23: 0})
xoshi.SeedIV([]byte{99: 0})
}
func TestXoshiSeedConsistency(t *testing.T) {
iv := make([]byte, 32)
xoshi := NewXoshiro()
x, y := make([]byte, 8000), make([]byte, 8000)
for i := 0; i < 1024; i++ {
rand.Read(iv)
xoshi.SeedIV(iv)
xoshi.Read(x)
xoshi.SeedIV(iv)
xoshi.Read(y)
if !bytes.Equal(x, y) {
t.Fail()
}
}
}
func TestXoshiSave(t *testing.T) {
b := bytes.Buffer{}
xoshi := CryptoSeeded(NewXoshiro(), 32).(*Xoshiro)
x, y := make([]byte, 8000), make([]byte, 8000)
for i := 0; i < 1024; i++ {
xoshi.Save(&b)
xoshi.Read(x)
xoshi.Restore(&b)
xoshi.Read(y)
if !bytes.Equal(x, y) {
t.Fail()
}
b.Reset()
}
}
func TestXoshiCopy(t *testing.T) {
xoshi := CryptoSeeded(NewXoshiro(), 32).(*Xoshiro)
x, y := make([]byte, 8000), make([]byte, 8000)
for i := 0; i < 1024; i++ {
cp := xoshi.Copy()
xoshi.Read(x)
cp.Read(y)
if !bytes.Equal(x, y) {
t.Fail()
}
}
}
func TestXoshiReverse(t *testing.T) {
xoshi := CryptoSeeded(NewXoshiro(), 32).(*Xoshiro)
for i := 0; i < 1024; i++ {
a := xoshi.Uint64()
xoshi.Reverse()
b := xoshi.Uint64()
if a != b {
t.Fail()
}
xoshi.Uint64()
}
}
func BenchmarkXoshiro(b *testing.B) {
xoshi := CryptoSeeded(NewXoshiro(), 32).(*Xoshiro)
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++ {
xoshi.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)))
}