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