]> Cypherpunks.ru repositories - govpn.git/blob - src/cypherpunks.ru/govpn/cmd/govpn-verifier/main.go
Merge branch 'develop'
[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         "io"
27         "log"
28
29         "cypherpunks.ru/govpn"
30 )
31
32 var (
33         keyPath  = flag.String("key", "", "Path to passphrase file")
34         verifier = flag.String("verifier", "", "Optional verifier")
35         mOpt     = flag.Int("m", govpn.DefaultM, "Argon2d memory parameter (KiBs)")
36         tOpt     = flag.Int("t", govpn.DefaultT, "Argon2d iteration parameter")
37         pOpt     = flag.Int("p", govpn.DefaultP, "Argon2d parallelizm parameter")
38         egdPath  = flag.String("egd", "", "Optional path to EGD socket")
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 *egdPath != "" {
49                 govpn.EGDInit(*egdPath)
50         }
51         key, err := govpn.KeyRead(*keyPath)
52         if err != nil {
53                 log.Fatalln("Unable to read the key", err)
54         }
55         if *verifier == "" {
56                 id := new([govpn.IDSize]byte)
57                 if _, err = io.ReadFull(govpn.Rand, id[:]); err != nil {
58                         log.Fatalln(err)
59                 }
60                 pid := govpn.PeerId(*id)
61                 v := govpn.VerifierNew(*mOpt, *tOpt, *pOpt, &pid)
62                 v.PasswordApply(key)
63                 fmt.Println(v.LongForm())
64                 fmt.Println(v.ShortForm())
65                 return
66         }
67         v, err := govpn.VerifierFromString(*verifier)
68         if err != nil {
69                 log.Fatalln("Can not decode verifier", err)
70         }
71         if v.Pub == nil {
72                 log.Fatalln("Verifier does not contain public key")
73         }
74         pub := *v.Pub
75         v.PasswordApply(key)
76         fmt.Println(bytes.Equal(v.Pub[:], pub[:]))
77 }