]> Cypherpunks.ru repositories - govpn.git/blob - src/cypherpunks.ru/govpn/cnw/cnw_test.go
Merge branch 'develop'
[govpn.git] / src / cypherpunks.ru / govpn / cnw / cnw_test.go
1 /*
2 GoVPN -- simple secure free software virtual private network daemon
3 Copyright (C) 2014-2016 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, either version 3 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 package cnw
20
21 import (
22         "bytes"
23         "crypto/rand"
24         "encoding/binary"
25         "testing"
26         "testing/quick"
27 )
28
29 var (
30         testKey *[32]byte = new([32]byte)
31 )
32
33 func init() {
34         rand.Read(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         rand.Read(nonce)
70         rand.Read(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         rand.Read(nonce)
81         rand.Read(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 }