github.com/core-coin/go-core/v2@v2.1.9/cmd/xcbkey/utils.go (about)

     1  // Copyright 2017 by the Authors
     2  // This file is part of go-core.
     3  //
     4  // go-core is free software: you can redistribute it and/or modify
     5  // it under the terms of the GNU General Public License as published by
     6  // the Free Software Foundation, either version 3 of the License, or
     7  // (at your option) any later version.
     8  //
     9  // go-core 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 go-core. If not, see <http://www.gnu.org/licenses/>.
    16  
    17  package main
    18  
    19  import (
    20  	"encoding/json"
    21  	"fmt"
    22  	"io/ioutil"
    23  	"strings"
    24  
    25  	"gopkg.in/urfave/cli.v1"
    26  
    27  	"github.com/core-coin/go-core/v2/cmd/utils"
    28  	"github.com/core-coin/go-core/v2/crypto"
    29  )
    30  
    31  // getPassphrase obtains a passphrase given by the user.  It first checks the
    32  // --passfile command line flag and ultimately prompts the user for a
    33  // passphrase.
    34  func getPassphrase(ctx *cli.Context, confirmation bool) string {
    35  	// Look for the --passwordfile flag.
    36  	passphraseFile := ctx.String(passphraseFlag.Name)
    37  	if passphraseFile != "" {
    38  		content, err := ioutil.ReadFile(passphraseFile)
    39  		if err != nil {
    40  			utils.Fatalf("Failed to read password file '%s': %v",
    41  				passphraseFile, err)
    42  		}
    43  		return strings.TrimRight(string(content), "\r\n")
    44  	}
    45  
    46  	// Otherwise prompt the user for the passphrase.
    47  	return utils.GetPassPhrase("", confirmation)
    48  }
    49  
    50  // signHash is a helper function that calculates a hash for the given message
    51  // that can be safely used to calculate a signature from.
    52  //
    53  // The hash is calulcated as
    54  //
    55  //	SHA3("\x19Core Signed Message:\n"${message length}${message}).
    56  //
    57  // This gives context to the signed message and prevents signing of transactions.
    58  func signHash(data []byte) []byte {
    59  	msg := fmt.Sprintf("\x19Core Signed Message:\n%d%s", len(data), data)
    60  	return crypto.SHA3([]byte(msg))
    61  }
    62  
    63  // mustPrintJSON prints the JSON encoding of the given object and
    64  // exits the program with an error message when the marshaling fails.
    65  func mustPrintJSON(jsonObject interface{}) {
    66  	str, err := json.MarshalIndent(jsonObject, "", "  ")
    67  	if err != nil {
    68  		utils.Fatalf("Failed to marshal JSON object: %v", err)
    69  	}
    70  	fmt.Println(string(str))
    71  }