Skip to content

Commit

Permalink
Add benchmarks for hash functions
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanfrey committed Jan 2, 2018
1 parent 3568767 commit 1a3746d
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions benchmarks/hash_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
package benchmarks

import (
"crypto"
"fmt"
"hash"
"testing"

_ "crypto/sha256"

_ "golang.org/x/crypto/ripemd160"
_ "golang.org/x/crypto/sha3"
)

func BenchmarkHash(b *testing.B) {
hashers := []struct {
name string
size int
hasher hash.Hash
}{
{"ripemd160", 64, crypto.RIPEMD160.New()},
{"ripemd160", 512, crypto.RIPEMD160.New()},
{"sha2-256", 64, crypto.SHA256.New()},
{"sha2-256", 512, crypto.SHA256.New()},
{"sha3-256", 64, crypto.SHA3_256.New()},
{"sha3-256", 512, crypto.SHA3_256.New()},
}

for _, h := range hashers {
prefix := fmt.Sprintf("%s-%d", h.name, h.size)
b.Run(prefix, func(sub *testing.B) {
benchHasher(sub, h.hasher, h.size)
})
}
}

func benchHasher(b *testing.B, hasher hash.Hash, size int) {
// create all random bytes before to avoid timing this
inputs := randBytes(b.N + size + 1)

for i := 0; i < b.N; i++ {
hasher.Reset()
// grab a slice of size bytes from random string
hasher.Write(inputs[i : i+size])
hasher.Sum(nil)
}
}

0 comments on commit 1a3746d

Please sign in to comment.