mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-05-25 08:16:46 +00:00

* Implement bip32 * Unite private and public extended keys * Change variable names * Change test name and add comment * Rename var name * Rename ckd.go to child_key_derivation.go * Rename ser32 -> serializeUint32 * Add PrivateKey method * Rename Path -> DeriveFromPath * Add comment to validateChecksum * Remove redundant condition from parsePath * Rename Fingerprint->ParentFingerprint * Merge hardened and non-hardened paths in calcI * Change fingerPrintFromPoint to method * Move hash160 to hash.go * Fix a bug in calcI * Simplify doubleSha256 * Remove slice end bound * Split long line * Change KaspaMainnetPrivate/public to represent kprv/kpub * Add comments * Fix comment * Copy base58 library to kaspad * Add versions for all networks * Change versions to hex * Add comments Co-authored-by: Svarog <feanorr@gmail.com> Co-authored-by: Elichai Turkel <elichai.turkel@gmail.com>
36 lines
686 B
Go
36 lines
686 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"
|
|
"testing"
|
|
|
|
"github.com/btcsuite/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)
|
|
}
|
|
}
|