This merge commit adds the following code from the github.com/decred/dcrutil package into a new github.com/decred/dcrd/dcrutil package: * Address handling * Amount type * AppDataDir func * bitflags functions * Block wrapper type * Hash160 func * Tx wrapper type * WIF type as well as all tests for this code. The old github.com/decred/dcrutil/hdkeychain package has also been merged and moved to github.com/decred/dcrd/dcrutil/hdkeychain. dcrd packages have been updated to use the new packages and the dep files have been updated for this change.
162 lines
4.2 KiB
Go
162 lines
4.2 KiB
Go
// Copyright (c) 2013, 2014 The btcsuite developers
|
|
// Copyright (c) 2015 The Decred developers
|
|
// Use of this source code is governed by an ISC
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package dcrutil_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/decred/dcrd/chaincfg"
|
|
"github.com/decred/dcrd/chaincfg/chainec"
|
|
. "github.com/decred/dcrd/dcrutil"
|
|
)
|
|
|
|
func TestEncodeDecodeWIF(t *testing.T) {
|
|
suites := []int{
|
|
chainec.ECTypeSecp256k1,
|
|
chainec.ECTypeEdwards,
|
|
chainec.ECTypeSecSchnorr,
|
|
}
|
|
for _, suite := range suites {
|
|
var priv1, priv2 chainec.PrivateKey
|
|
switch suite {
|
|
case chainec.ECTypeSecp256k1:
|
|
priv1, _ = chainec.Secp256k1.PrivKeyFromBytes([]byte{
|
|
0x0c, 0x28, 0xfc, 0xa3, 0x86, 0xc7, 0xa2, 0x27,
|
|
0x60, 0x0b, 0x2f, 0xe5, 0x0b, 0x7c, 0xae, 0x11,
|
|
0xec, 0x86, 0xd3, 0xbf, 0x1f, 0xbe, 0x47, 0x1b,
|
|
0xe8, 0x98, 0x27, 0xe1, 0x9d, 0x72, 0xaa, 0x1d})
|
|
|
|
priv2, _ = chainec.Secp256k1.PrivKeyFromBytes([]byte{
|
|
0xdd, 0xa3, 0x5a, 0x14, 0x88, 0xfb, 0x97, 0xb6,
|
|
0xeb, 0x3f, 0xe6, 0xe9, 0xef, 0x2a, 0x25, 0x81,
|
|
0x4e, 0x39, 0x6f, 0xb5, 0xdc, 0x29, 0x5f, 0xe9,
|
|
0x94, 0xb9, 0x67, 0x89, 0xb2, 0x1a, 0x03, 0x98})
|
|
case chainec.ECTypeEdwards:
|
|
priv1, _ = chainec.Edwards.PrivKeyFromScalar([]byte{
|
|
0x0c, 0x28, 0xfc, 0xa3, 0x86, 0xc7, 0xa2, 0x27,
|
|
0x60, 0x0b, 0x2f, 0xe5, 0x0b, 0x7c, 0xae, 0x11,
|
|
0xec, 0x86, 0xd3, 0xbf, 0x1f, 0xbe, 0x47, 0x1b,
|
|
0xe8, 0x98, 0x27, 0xe1, 0x9d, 0x72, 0xaa, 0x1d})
|
|
|
|
priv2, _ = chainec.Edwards.PrivKeyFromScalar([]byte{
|
|
0x0c, 0xa3, 0x5a, 0x14, 0x88, 0xfb, 0x97, 0xb6,
|
|
0xeb, 0x3f, 0xe6, 0xe9, 0xef, 0x2a, 0x25, 0x81,
|
|
0x4e, 0x39, 0x6f, 0xb5, 0xdc, 0x29, 0x5f, 0xe9,
|
|
0x94, 0xb9, 0x67, 0x89, 0xb2, 0x1a, 0x03, 0x98})
|
|
case chainec.ECTypeSecSchnorr:
|
|
priv1, _ = chainec.SecSchnorr.PrivKeyFromBytes([]byte{
|
|
0x0c, 0x28, 0xfc, 0xa3, 0x86, 0xc7, 0xa2, 0x27,
|
|
0x60, 0x0b, 0x2f, 0xe5, 0x0b, 0x7c, 0xae, 0x11,
|
|
0xec, 0x86, 0xd3, 0xbf, 0x1f, 0xbe, 0x47, 0x1b,
|
|
0xe8, 0x98, 0x27, 0xe1, 0x9d, 0x72, 0xaa, 0x1d})
|
|
|
|
priv2, _ = chainec.SecSchnorr.PrivKeyFromBytes([]byte{
|
|
0xdd, 0xa3, 0x5a, 0x14, 0x88, 0xfb, 0x97, 0xb6,
|
|
0xeb, 0x3f, 0xe6, 0xe9, 0xef, 0x2a, 0x25, 0x81,
|
|
0x4e, 0x39, 0x6f, 0xb5, 0xdc, 0x29, 0x5f, 0xe9,
|
|
0x94, 0xb9, 0x67, 0x89, 0xb2, 0x1a, 0x03, 0x98})
|
|
}
|
|
|
|
wif1, err := NewWIF(priv1, &chaincfg.MainNetParams, suite)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
wif2, err := NewWIF(priv2, &chaincfg.TestNet2Params, suite)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
wif3, err := NewWIF(priv2, &chaincfg.SimNetParams, suite)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
var tests []struct {
|
|
wif *WIF
|
|
encoded string
|
|
}
|
|
|
|
switch suite {
|
|
case chainec.ECTypeSecp256k1:
|
|
tests = []struct {
|
|
wif *WIF
|
|
encoded string
|
|
}{
|
|
{
|
|
wif1,
|
|
"PmQdMn8xafwaQouk8ngs1CccRCB1ZmsqQxBaxNR4vhQi5a5QB5716",
|
|
},
|
|
{
|
|
wif2,
|
|
"PtWVDUidYaiiNT5e2Sfb1Ah4evbaSopZJkkpFBuzkJYcYteugvdFg",
|
|
},
|
|
{
|
|
wif3,
|
|
"PsURoUb7FMeJQdTYea8pkbUQFBZAsxtfDcfTLGja5sCLZvLZWRtjK",
|
|
},
|
|
}
|
|
case chainec.ECTypeEdwards:
|
|
tests = []struct {
|
|
wif *WIF
|
|
encoded string
|
|
}{
|
|
{
|
|
wif1,
|
|
"PmQfJXKC2ho1633ZiVbSdCZw1y68BVXYFpyE2UfDcbQN5xa3DByDn",
|
|
},
|
|
{
|
|
wif2,
|
|
"PtWVaBGeCfbFQfgqFew8YvdrSH5TH439K7rvpo3aWnSfDvyK8ijbK",
|
|
},
|
|
{
|
|
wif3,
|
|
"PsUSAB97uSWqSr4jsnQNJMRC2Y33iD7FDymZuss9rM6PExexSPyTQ",
|
|
},
|
|
}
|
|
case chainec.ECTypeSecSchnorr:
|
|
tests = []struct {
|
|
wif *WIF
|
|
encoded string
|
|
}{
|
|
{
|
|
wif1,
|
|
"PmQhFGVRUjeRmGBPJCW2FCXFck1EoDBF6hks6auNJVQ26M4h73W9W",
|
|
},
|
|
{
|
|
wif2,
|
|
"PtWZ6y56SeRZiuMHBrUkFAbhrURogF7xzWL6PQQJ86XvZfeE3jf1a",
|
|
},
|
|
{
|
|
wif3,
|
|
"PsUVgxwa9RM9m5jBoywyzbP3SjPQ7QC4uNEjUVDsTfBeahKkmETvQ",
|
|
},
|
|
}
|
|
}
|
|
|
|
for _, test := range tests {
|
|
// Test that encoding the WIF structure matches the expected string.
|
|
s := test.wif.String()
|
|
if s != test.encoded {
|
|
t.Errorf("TestEncodeDecodePrivateKey failed: want '%s', got '%s'",
|
|
test.encoded, s)
|
|
continue
|
|
}
|
|
|
|
// Test that decoding the expected string results in the original WIF
|
|
// structure.
|
|
w, err := DecodeWIF(test.encoded)
|
|
if err != nil {
|
|
t.Error(err)
|
|
continue
|
|
}
|
|
if got := w.String(); got != test.encoded {
|
|
t.Errorf("NewWIF failed: want '%v', got '%v'", test.wif, got)
|
|
}
|
|
|
|
w.SerializePubKey()
|
|
}
|
|
}
|
|
}
|