Documentation
¶
Overview ¶
Copyright © 2022 Polygon <engineering@polygon.technology>
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
Index ¶
Constants ¶
This section is empty.
Variables ¶
var HashCmd = &cobra.Command{ Use: fmt.Sprintf("hash [%s]", strings.Join(supportedHashFunctions, "|")), Short: "Simple command line tools for common crypto hashing functions", Long: `Hash Functions This is a simple command line tool to run common hash functions. If the --file argument is provided, we'll attempt to read the file and hash it. If additionall data is provided on the command line, that will be hashed. Otherwise, we'll attempted to read the standard input. `, Run: func(cmd *cobra.Command, args []string) { data, err := getInputData(cmd, args) if err != nil { cmd.PrintErrf("There was a nerror reading input for hashing: %s", err.Error()) return } h, err := getHash(args[0]) if err != nil { cmd.PrintErrf("There was an error creating the hash function: %s", err.Error()) return } h.Write(data) hashOut := h.Sum(nil) cmd.Println(hex.EncodeToString(hashOut)) }, Args: func(cmd *cobra.Command, args []string) error { if len(args) < 1 { return fmt.Errorf("expected 1 argument to specify hash function. got %d", len(args)) } for _, v := range supportedHashFunctions { if v == args[0] { return nil } } return fmt.Errorf("the name %s is not recognized. Please use one of the following: %s", args[0], strings.Join(supportedHashFunctions, ",")) }, }
hashCmd represents the hash command
Functions ¶
This section is empty.
Types ¶
This section is empty.