Add benchmarks to base58 package.
This commit is contained in:
parent
a630ef8247
commit
fffd6a2e87
1 changed files with 35 additions and 0 deletions
35
base58/base58bench_test.go
Normal file
35
base58/base58bench_test.go
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
// Copyright (c) 2013-2014 Conformal Systems LLC.
|
||||||
|
// Use of this source code is governed by an ISC
|
||||||
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
|
package base58_test
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/conformal/btcutil/base58"
|
||||||
|
)
|
||||||
|
|
||||||
|
func BenchmarkBase58Encode(b *testing.B) {
|
||||||
|
b.StopTimer()
|
||||||
|
data := bytes.Repeat([]byte{0xff}, 5000)
|
||||||
|
b.SetBytes(int64(len(data)))
|
||||||
|
b.StartTimer()
|
||||||
|
|
||||||
|
for i := 0; i < b.N; i++ {
|
||||||
|
base58.Encode(data)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func BenchmarkBase58Decode(b *testing.B) {
|
||||||
|
b.StopTimer()
|
||||||
|
data := bytes.Repeat([]byte{0xff}, 5000)
|
||||||
|
encoded := base58.Encode(data)
|
||||||
|
b.SetBytes(int64(len(encoded)))
|
||||||
|
b.StartTimer()
|
||||||
|
|
||||||
|
for i := 0; i < b.N; i++ {
|
||||||
|
base58.Decode(encoded)
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue