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