]> Cypherpunks.ru repositories - govpn.git/blob - cmd/govpn-verifier/main.go
Raise copyright years
[govpn.git] / cmd / govpn-verifier / main.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 // Verifier generator and validator for GoVPN VPN daemon.
19 package main
20
21 import (
22         "bytes"
23         "flag"
24         "fmt"
25         "io"
26         "log"
27
28         "go.cypherpunks.ru/govpn/v7"
29 )
30
31 var (
32         keyPath  = flag.String("key", "", "Path to passphrase file")
33         verifier = flag.String("verifier", "", "Optional verifier")
34         sOpt     = flag.Int("s", govpn.DefaultS, "Balloon space cost")
35         tOpt     = flag.Int("t", govpn.DefaultT, "Balloon time cost")
36         pOpt     = flag.Int("p", govpn.DefaultP, "Balloon parallel jobs")
37         egdPath  = flag.String("egd", "", "Optional path to EGD socket")
38         version  = flag.Bool("version", false, "Print version information")
39         warranty = flag.Bool("warranty", false, "Print warranty information")
40 )
41
42 func main() {
43         flag.Parse()
44         if *warranty {
45                 fmt.Println(govpn.Warranty)
46                 return
47         }
48         if *version {
49                 fmt.Println(govpn.VersionGet())
50                 return
51         }
52         if *egdPath != "" {
53                 govpn.EGDInit(*egdPath)
54         }
55         key, err := govpn.KeyRead(*keyPath)
56         if err != nil {
57                 log.Fatalln("Unable to read the key", err)
58         }
59         if *verifier == "" {
60                 id := new([govpn.IDSize]byte)
61                 if _, err = io.ReadFull(govpn.Rand, id[:]); err != nil {
62                         log.Fatalln(err)
63                 }
64                 pid := govpn.PeerID(*id)
65                 v := govpn.VerifierNew(*sOpt, *tOpt, *pOpt, &pid)
66                 v.PasswordApply(key)
67                 fmt.Println(v.LongForm())
68                 fmt.Println(v.ShortForm())
69                 return
70         }
71         v, err := govpn.VerifierFromString(*verifier)
72         if err != nil {
73                 log.Fatalln("Can not decode verifier", err)
74         }
75         if v.Pub == nil {
76                 log.Fatalln("Verifier does not contain public key")
77         }
78         pub := *v.Pub
79         v.PasswordApply(key)
80         fmt.Println(bytes.Equal(v.Pub[:], pub[:]))
81 }