mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-05-30 02:36:42 +00:00
35 lines
689 B
Go
35 lines
689 B
Go
// Copyright (c) 2013-2014 The btcsuite developers
|
|
// Use of this source code is governed by an ISC
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package base58_test
|
|
|
|
import (
|
|
"bytes"
|
|
"github.com/kaspanet/kaspad/util/base58"
|
|
"testing"
|
|
)
|
|
|
|
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)
|
|
}
|
|
}
|