]> Cypherpunks.ru repositories - govpn.git/blob - encless.go
Raise copyright years
[govpn.git] / encless.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 govpn
19
20 import (
21         "io"
22
23         "go.cypherpunks.ru/govpn/v7/aont"
24         "go.cypherpunks.ru/govpn/v7/cnw"
25 )
26
27 const (
28         EnclessEnlargeSize = aont.HSize + aont.RSize*cnw.EnlargeFactor
29 )
30
31 // Confidentiality preserving (but encryptionless) encoding.
32 //
33 // It uses Chaffing-and-Winnowing technology (it is neither
34 // encryption nor steganography) over All-Or-Nothing-Transformed data.
35 // nonce is 64-bit nonce. Output data will be EnclessEnlargeSize larger.
36 // It also consumes 64-bits of entropy.
37 func EnclessEncode(authKey *[32]byte, nonce *[16]byte, in []byte) ([]byte, error) {
38         r := new([aont.RSize]byte)
39         var err error
40         if _, err = io.ReadFull(Rand, r[:]); err != nil {
41                 return nil, err
42         }
43         aonted, err := aont.Encode(r, in)
44         if err != nil {
45                 return nil, err
46         }
47         out := append(
48                 cnw.Chaff(authKey, nonce[8:], aonted[:aont.RSize]),
49                 aonted[aont.RSize:]...,
50         )
51         SliceZero(aonted[:aont.RSize])
52         return out, nil
53 }
54
55 // Decode EnclessEncode-ed data.
56 func EnclessDecode(authKey *[32]byte, nonce *[16]byte, in []byte) ([]byte, error) {
57         var err error
58         winnowed, err := cnw.Winnow(
59                 authKey, nonce[8:], in[:aont.RSize*cnw.EnlargeFactor],
60         )
61         if err != nil {
62                 return nil, err
63         }
64         out, err := aont.Decode(append(
65                 winnowed, in[aont.RSize*cnw.EnlargeFactor:]...,
66         ))
67         SliceZero(winnowed)
68         if err != nil {
69                 return nil, err
70         }
71         return out, nil
72 }