]> Cypherpunks.ru repositories - nncp.git/blobdiff - src/cypherpunks.ru/nncp/cmd/nncp-cfgenc/main.go
Full go modules usage
[nncp.git] / src / cypherpunks.ru / nncp / cmd / nncp-cfgenc / main.go
diff --git a/src/cypherpunks.ru/nncp/cmd/nncp-cfgenc/main.go b/src/cypherpunks.ru/nncp/cmd/nncp-cfgenc/main.go
deleted file mode 100644 (file)
index 4d47e01..0000000
+++ /dev/null
@@ -1,125 +0,0 @@
-/*
-NNCP -- Node to Node copy, utilities for store-and-forward data exchange
-Copyright (C) 2016-2019 Sergey Matveev <stargrave@stargrave.org>
-
-This program is free software: you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation, version 3 of the License.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program.  If not, see <http://www.gnu.org/licenses/>.
-*/
-
-// NNCP configuration file encrypter/decrypter.
-package main
-
-import (
-       "bytes"
-       "errors"
-       "flag"
-       "fmt"
-       "io/ioutil"
-       "log"
-       "os"
-
-       "cypherpunks.ru/nncp"
-       "github.com/davecgh/go-xdr/xdr2"
-       "golang.org/x/crypto/blake2b"
-       "golang.org/x/crypto/ssh/terminal"
-)
-
-func usage() {
-       fmt.Fprintf(os.Stderr, nncp.UsageHeader())
-       fmt.Fprintf(os.Stderr, "nncp-cfgenc -- encrypt/decrypt configuration file\n\n")
-       fmt.Fprintf(os.Stderr, "Usage: %s [options] cfg.yaml > cfg.yaml.eblob\n", os.Args[0])
-       fmt.Fprintf(os.Stderr, "       %s [options] -d cfg.yaml.eblob > cfg.yaml\n", os.Args[0])
-       fmt.Fprintf(os.Stderr, "       %s [options] -dump cfg.yaml.eblob\n", os.Args[0])
-       fmt.Fprintln(os.Stderr, "Options:")
-       flag.PrintDefaults()
-}
-
-func main() {
-       var (
-               decrypt  = flag.Bool("d", false, "Decrypt the file")
-               dump     = flag.Bool("dump", false, "Print human-readable eblob information")
-               sOpt     = flag.Int("s", nncp.DefaultS, "Balloon space cost, in 32 bytes chunks")
-               tOpt     = flag.Int("t", nncp.DefaultT, "Balloon time cost, number of rounds")
-               pOpt     = flag.Int("p", nncp.DefaultP, "Balloon number of parallel jobs")
-               version  = flag.Bool("version", false, "Print version information")
-               warranty = flag.Bool("warranty", false, "Print warranty information")
-       )
-       flag.Usage = usage
-       flag.Parse()
-       if *warranty {
-               fmt.Println(nncp.Warranty)
-               return
-       }
-       if *version {
-               fmt.Println(nncp.VersionGet())
-               return
-       }
-
-       if flag.NArg() != 1 {
-               usage()
-               os.Exit(1)
-       }
-
-       data, err := ioutil.ReadFile(flag.Arg(0))
-       if err != nil {
-               log.Fatalln("Can not read data:", err)
-       }
-       if *dump {
-               var eblob nncp.EBlob
-               if _, err := xdr.Unmarshal(bytes.NewReader(data), &eblob); err != nil {
-                       log.Fatalln(err)
-               }
-               if eblob.Magic != nncp.MagicNNCPBv3 {
-                       log.Fatalln(errors.New("Unknown eblob type"))
-               }
-               fmt.Println("Strengthening function: Balloon with BLAKE2b-256")
-               fmt.Printf("Memory space cost: %d bytes\n", eblob.SCost*blake2b.Size256)
-               fmt.Printf("Number of rounds: %d\n", eblob.TCost)
-               fmt.Printf("Number of parallel jobs: %d\n", eblob.PCost)
-               fmt.Printf("Blob size: %d\n", len(eblob.Blob))
-               os.Exit(0)
-       }
-       if *decrypt {
-               os.Stderr.WriteString("Passphrase:")
-               password, err := terminal.ReadPassword(0)
-               if err != nil {
-                       log.Fatalln(err)
-               }
-               os.Stderr.WriteString("\n")
-               cfgRaw, err := nncp.DeEBlob(data, password)
-               if err != nil {
-                       log.Fatalln(err)
-               }
-               os.Stdout.Write(cfgRaw)
-       } else {
-               os.Stderr.WriteString("Passphrase:")
-               password1, err := terminal.ReadPassword(0)
-               if err != nil {
-                       log.Fatalln(err)
-               }
-               os.Stderr.WriteString("\n")
-               os.Stderr.WriteString("Repeat passphrase:")
-               password2, err := terminal.ReadPassword(0)
-               if err != nil {
-                       log.Fatalln(err)
-               }
-               os.Stderr.WriteString("\n")
-               if bytes.Compare(password1, password2) != 0 {
-                       log.Fatalln(errors.New("Passphrases do not match"))
-               }
-               eblob, err := nncp.NewEBlob(*sOpt, *tOpt, *pOpt, password1, data)
-               if err != nil {
-                       log.Fatalln(err)
-               }
-               os.Stdout.Write(eblob)
-       }
-}