This commit is contained in:
obscuren
2015-01-12 10:19:27 +01:00
parent 7e6b72cb5c
commit 35fe4313d5
5 changed files with 50 additions and 2 deletions

View File

@ -3,7 +3,9 @@ package crypto
import (
"bytes"
"encoding/hex"
"fmt"
"testing"
"time"
)
// These tests are sanity checks.
@ -34,3 +36,14 @@ func checkhash(t *testing.T, name string, f func([]byte) []byte, msg, exp []byte
t.Errorf("hash %s returned wrong result.\ngot: %x\nwant: %x", name, sum, exp)
}
}
func BenchmarkSha3(b *testing.B) {
a := []byte("hello world")
amount := 1000000
start := time.Now()
for i := 0; i < amount; i++ {
Sha3(a)
}
fmt.Println(amount, ":", time.Since(start))
}