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