]> Cypherpunks.ru repositories - govpn.git/blob - src/cypherpunks.ru/govpn/encless.go
golint fixes
[govpn.git] / src / cypherpunks.ru / govpn / encless.go
1 /*
2 GoVPN -- simple secure free software virtual private network daemon
3 Copyright (C) 2014-2017 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 govpn
20
21 import (
22         "io"
23
24         "cypherpunks.ru/govpn/aont"
25         "cypherpunks.ru/govpn/cnw"
26 )
27
28 // EnclessEnlargeSize TODO
29 const EnclessEnlargeSize = aont.HSize + aont.RSize*cnw.EnlargeFactor
30
31 // EnclessEncode is a 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 // EnclessDecode 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 }