aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaria Carolin Chabowski <laria@laria.me>2017-06-26 11:51:11 +0200
committerLaria Carolin Chabowski <laria@laria.me>2017-06-26 11:51:11 +0200
commit2145d6d7b56f44a2698529c809186037aba893cc (patch)
tree263073ee3cdc79607daf3ecaecd085d81f3af5ad
downloadsha3sum-2145d6d7b56f44a2698529c809186037aba893cc.tar.gz
sha3sum-2145d6d7b56f44a2698529c809186037aba893cc.tar.bz2
sha3sum-2145d6d7b56f44a2698529c809186037aba893cc.zip
Initial commitHEADmaster
-rw-r--r--LICENSE13
-rw-r--r--README.md9
-rw-r--r--main.go71
3 files changed, 93 insertions, 0 deletions
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..5c93f45
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,13 @@
+ DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
+ Version 2, December 2004
+
+ Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
+
+ Everyone is permitted to copy and distribute verbatim or modified
+ copies of this license document, and changing it is allowed as long
+ as the name is changed.
+
+ DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. You just DO WHAT THE FUCK YOU WANT TO.
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..ec23b69
--- /dev/null
+++ b/README.md
@@ -0,0 +1,9 @@
+sha3sum
+=======
+
+Simple program to expose `golang.org/x/crypto/sha3` on the command line (similar to the `sha1sum` utility)
+
+Usage
+-----
+
+Call the program with a list of filenames, these will be hashed. The filename '-' represents stdin. When no argument is passed, hash stdin. Optionally you can specify the hash size (e.g. 256, 512) with the optional `-algo` flag. See `sha3sum -help`.
diff --git a/main.go b/main.go
new file mode 100644
index 0000000..d73db50
--- /dev/null
+++ b/main.go
@@ -0,0 +1,71 @@
+package main
+
+import (
+ "encoding/hex"
+ "flag"
+ "fmt"
+ "golang.org/x/crypto/sha3"
+ "hash"
+ "io"
+ "os"
+)
+
+var (
+ algo = flag.String("algo", "256", "Which algo should be used (224,256,384,512)")
+)
+
+var algos = map[string]func() hash.Hash{
+ "256": sha3.New256,
+ "224": sha3.New224,
+ "384": sha3.New384,
+ "512": sha3.New512,
+}
+
+func main() {
+ flag.Parse()
+
+ files := append([]string{}, flag.Args()...)
+
+ if len(files) == 0 {
+ files = append(files, "-")
+ }
+
+ for _, fn := range files {
+ if !doFile(fn) {
+ os.Exit(1)
+ }
+ }
+}
+
+func doFile(fn string) bool {
+ var r io.Reader
+
+ if fn == "-" {
+ r = os.Stdin
+ } else {
+ f, err := os.Open(fn)
+ if err != nil {
+ fmt.Fprintln(os.Stderr, err)
+ return false
+ }
+ defer f.Close()
+
+ r = f
+ }
+
+ gethash, ok := algos[*algo]
+ if !ok {
+ fmt.Fprintf(os.Stderr, "Unknown algo: %s\n", *algo)
+ return false
+ }
+
+ hash := gethash()
+
+ if _, err := io.Copy(hash, r); err != nil {
+ fmt.Fprintln(os.Stderr, err)
+ return false
+ }
+
+ fmt.Printf("%s %s\n", hex.EncodeToString(hash.Sum([]byte{})), fn)
+ return true
+}