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