]> Cypherpunks.ru repositories - govpn.git/blob - src/govpn/cmd/govpn-verifier/main.go
97c43339d2eb24eb0868cadec4f19006131b8119
[govpn.git] / src / govpn / cmd / govpn-verifier / main.go
1 /*
2 GoVPN -- simple secure free software virtual private network daemon
3 Copyright (C) 2014-2015 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         "crypto/rand"
24         "crypto/subtle"
25         "flag"
26         "fmt"
27         "log"
28
29         "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 )
39
40 func main() {
41         flag.Parse()
42         if *verifier == "" {
43                 id := new([govpn.IDSize]byte)
44                 if _, err := rand.Read(id[:]); err != nil {
45                         log.Fatalln(err)
46                 }
47                 pid := govpn.PeerId(*id)
48                 v := govpn.VerifierNew(*mOpt, *tOpt, *pOpt, &pid)
49                 v.PasswordApply(govpn.StringFromFile(*keyPath))
50                 fmt.Println(v.LongForm())
51                 fmt.Println(v.ShortForm())
52                 return
53         }
54         v, err := govpn.VerifierFromString(*verifier)
55         if err != nil {
56                 log.Fatalln("Can not decode verifier", err)
57         }
58         if v.Pub == nil {
59                 log.Fatalln("Verifier does not contain public key")
60         }
61         pub := *v.Pub
62         v.PasswordApply(govpn.StringFromFile(*keyPath))
63         fmt.Println(subtle.ConstantTimeCompare(v.Pub[:], pub[:]) == 1)
64 }