]> Cypherpunks.ru repositories - govpn.git/blob - cnw/cnw_test.go
Raise copyright years
[govpn.git] / cnw / cnw_test.go
1 /*
2 GoVPN -- simple secure free software virtual private network daemon
3 Copyright (C) 2014-2020 Sergey Matveev <stargrave@stargrave.org>
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, version 3 of the License.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 package cnw
19
20 import (
21         "bytes"
22         "crypto/rand"
23         "encoding/binary"
24         "io"
25         "testing"
26         "testing/quick"
27 )
28
29 var (
30         testKey = new([32]byte)
31 )
32
33 func init() {
34         io.ReadFull(rand.Reader, testKey[:])
35 }
36
37 func TestSymmetric(t *testing.T) {
38         nonce := make([]byte, 8)
39         f := func(data []byte, pktNum uint64) bool {
40                 if len(data) == 0 {
41                         return true
42                 }
43                 binary.BigEndian.PutUint64(nonce, pktNum)
44                 chaffed := Chaff(testKey, nonce, data)
45                 if len(chaffed) != len(data)*EnlargeFactor {
46                         return false
47                 }
48                 decoded, err := Winnow(testKey, nonce, chaffed)
49                 if err != nil {
50                         return false
51                 }
52                 return bytes.Compare(decoded, data) == 0
53         }
54         if err := quick.Check(f, nil); err != nil {
55                 t.Error(err)
56         }
57 }
58
59 func TestSmallSize(t *testing.T) {
60         _, err := Winnow(testKey, []byte("foobar12"), []byte("foobar"))
61         if err == nil {
62                 t.Fail()
63         }
64 }
65
66 func BenchmarkChaff(b *testing.B) {
67         nonce := make([]byte, 8)
68         data := make([]byte, 16)
69         io.ReadFull(rand.Reader, nonce)
70         io.ReadFull(rand.Reader, data)
71         b.ResetTimer()
72         for i := 0; i < b.N; i++ {
73                 Chaff(testKey, nonce, data)
74         }
75 }
76
77 func BenchmarkWinnow(b *testing.B) {
78         nonce := make([]byte, 8)
79         data := make([]byte, 16)
80         io.ReadFull(rand.Reader, nonce)
81         io.ReadFull(rand.Reader, data)
82         chaffed := Chaff(testKey, nonce, data)
83         b.ResetTimer()
84         for i := 0; i < b.N; i++ {
85                 Winnow(testKey, nonce, chaffed)
86         }
87 }