]> Cypherpunks.ru repositories - nncp.git/blob - src/cmd/nncp-cfgenc/main.go
95272ad4715f669dbf9994a8075354ad22497999
[nncp.git] / src / cmd / nncp-cfgenc / main.go
1 /*
2 NNCP -- Node to Node copy, utilities for store-and-forward data exchange
3 Copyright (C) 2016-2021 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 // NNCP configuration file encrypter/decrypter.
19 package main
20
21 import (
22         "bytes"
23         "errors"
24         "flag"
25         "fmt"
26         "io/ioutil"
27         "log"
28         "os"
29
30         xdr "github.com/davecgh/go-xdr/xdr2"
31         "go.cypherpunks.ru/nncp/v6"
32         "golang.org/x/crypto/blake2b"
33         "golang.org/x/term"
34 )
35
36 func usage() {
37         fmt.Fprintf(os.Stderr, nncp.UsageHeader())
38         fmt.Fprintf(os.Stderr, "nncp-cfgenc -- encrypt/decrypt configuration file\n\n")
39         fmt.Fprintf(os.Stderr, "Usage: %s [options] cfg.hjson > cfg.hjson.eblob\n", os.Args[0])
40         fmt.Fprintf(os.Stderr, "       %s [options] -d cfg.hjson.eblob > cfg.hjson\n", os.Args[0])
41         fmt.Fprintf(os.Stderr, "       %s [options] -dump cfg.hjson.eblob\n", os.Args[0])
42         fmt.Fprintln(os.Stderr, "Options:")
43         flag.PrintDefaults()
44 }
45
46 func main() {
47         var (
48                 decrypt  = flag.Bool("d", false, "Decrypt the file")
49                 dump     = flag.Bool("dump", false, "Print human-readable eblob information")
50                 sOpt     = flag.Int("s", nncp.DefaultS, "Balloon space cost, in 32 bytes chunks")
51                 tOpt     = flag.Int("t", nncp.DefaultT, "Balloon time cost, number of rounds")
52                 pOpt     = flag.Int("p", nncp.DefaultP, "Balloon number of parallel jobs")
53                 version  = flag.Bool("version", false, "Print version information")
54                 warranty = flag.Bool("warranty", false, "Print warranty information")
55         )
56         log.SetFlags(log.Lshortfile)
57         flag.Usage = usage
58         flag.Parse()
59         if *warranty {
60                 fmt.Println(nncp.Warranty)
61                 return
62         }
63         if *version {
64                 fmt.Println(nncp.VersionGet())
65                 return
66         }
67
68         if flag.NArg() != 1 {
69                 usage()
70                 os.Exit(1)
71         }
72
73         data, err := ioutil.ReadFile(flag.Arg(0))
74         if err != nil {
75                 log.Fatalln("Can not read data:", err)
76         }
77         if *dump {
78                 var eblob nncp.EBlob
79                 if _, err := xdr.Unmarshal(bytes.NewReader(data), &eblob); err != nil {
80                         log.Fatalln(err)
81                 }
82                 if eblob.Magic != nncp.MagicNNCPBv3 {
83                         log.Fatalln(errors.New("Unknown eblob type"))
84                 }
85                 fmt.Println("Strengthening function: Balloon with BLAKE2b-256")
86                 fmt.Printf("Memory space cost: %d bytes\n", eblob.SCost*blake2b.Size256)
87                 fmt.Printf("Number of rounds: %d\n", eblob.TCost)
88                 fmt.Printf("Number of parallel jobs: %d\n", eblob.PCost)
89                 fmt.Printf("Blob size: %d\n", len(eblob.Blob))
90                 return
91         }
92
93         os.Stderr.WriteString("Passphrase:") // #nosec G104
94         password, err := term.ReadPassword(0)
95         if err != nil {
96                 log.Fatalln(err)
97         }
98         os.Stderr.WriteString("\n") // #nosec G104
99
100         if *decrypt {
101                 cfgRaw, err := nncp.DeEBlob(data, password)
102                 if err != nil {
103                         log.Fatalln(err)
104                 }
105                 os.Stdout.Write(cfgRaw) // #nosec G104
106                 return
107         }
108
109         password1, err := term.ReadPassword(0)
110         if err != nil {
111                 log.Fatalln(err)
112         }
113         os.Stderr.WriteString("\n")                 // #nosec G104
114         os.Stderr.WriteString("Repeat passphrase:") // #nosec G104
115         password2, err := term.ReadPassword(0)
116         if err != nil {
117                 log.Fatalln(err)
118         }
119         os.Stderr.WriteString("\n") // #nosec G104
120         if bytes.Compare(password1, password2) != 0 {
121                 log.Fatalln(errors.New("Passphrases do not match"))
122         }
123         eblob, err := nncp.NewEBlob(*sOpt, *tOpt, *pOpt, password1, data)
124         if err != nil {
125                 log.Fatalln(err)
126         }
127         os.Stdout.Write(eblob) // #nosec G104
128 }