]> Cypherpunks.ru repositories - govpn.git/blob - src/govpn/verifier.go
895404792cfd9edcdff67e28f43528d724adb026
[govpn.git] / src / govpn / verifier.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 package govpn
20
21 import (
22         "bytes"
23         "crypto/sha512"
24         "io/ioutil"
25         "log"
26         "strings"
27
28         "github.com/agl/ed25519"
29         "golang.org/x/crypto/pbkdf2"
30 )
31
32 const (
33         PBKDF2Iters = 1 << 16
34 )
35
36 // Create verifier from supplied password for given PeerId.
37 func NewVerifier(id *PeerId, password string) (*[ed25519.PublicKeySize]byte, *[ed25519.PrivateKeySize]byte) {
38         r := pbkdf2.Key(
39                 []byte(password),
40                 id[:],
41                 PBKDF2Iters,
42                 ed25519.PrivateKeySize,
43                 sha512.New,
44         )
45         defer sliceZero(r)
46         src := bytes.NewBuffer(r)
47         pub, priv, err := ed25519.GenerateKey(src)
48         if err != nil {
49                 log.Fatalln("Unable to generate Ed25519 keypair", err)
50         }
51         return pub, priv
52 }
53
54 // Read string from the file, trimming newline.
55 func StringFromFile(path string) string {
56         s, err := ioutil.ReadFile(path)
57         if err != nil {
58                 log.Fatalln("Can not read string from", path, err)
59         }
60         return strings.TrimRight(string(s), "\n")
61 }