bip32

package
v0.10.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 28, 2021 License: ISC Imports: 14 Imported by: 1

Documentation

Index

Constants

View Source
const (
	// FirstHardenedChild is the index of the firxt "harded" child key as per the
	// bip32 spec
	FirstHardenedChild = uint32(0x80000000)

	// PublicKeyCompressedLength is the byte count of a compressed public key
	PublicKeyCompressedLength = 33
)

Variables

View Source
var (
	DefaultBip32Version = Bip32Version{

		[]byte{0x04, 0x88, 0xad, 0xe4},

		[]byte{0x04, 0x88, 0xb2, 0x1e},
	}
	// ErrSerializedKeyWrongSize is returned when trying to deserialize a key that
	// has an incorrect length
	ErrSerializedKeyWrongSize = errors.New("Serialized keys should by exactly 82 bytes")

	// ErrHardnedChildPublicKey is returned when trying to create a harded child
	// of the public key
	ErrHardnedChildPublicKey = errors.New("Can't create hardened child for public key")

	// ErrInvalidChecksum is returned when deserializing a key with an incorrect
	// checksum
	ErrInvalidChecksum = errors.New("Checksum doesn't match")

	// ErrInvalidPrivateKey is returned when a derived private key is invalid
	ErrInvalidPrivateKey = errors.New("Invalid private key")

	// ErrInvalidPublicKey is returned when a derived public key is invalid
	ErrInvalidPublicKey = errors.New("Invalid public key")
)

Functions

func NewSeed

func NewSeed() ([]byte, error)

NewSeed returns a cryptographically secure seed

Types

type Bip32Version

type Bip32Version struct {
	PrivKeyVersion []byte
	PubKeyVersion  []byte
}

func (Bip32Version) IsPrivkeyVersion

func (v Bip32Version) IsPrivkeyVersion(privKeyVer []byte) bool

func (Bip32Version) IsPubkeyVersion

func (v Bip32Version) IsPubkeyVersion(pukKeyVer []byte) bool

type Key

type Key struct {
	Key         []byte       // 33 bytes
	Version     []byte       // 4 bytes
	ChildNumber []byte       // 4 bytes
	FingerPrint []byte       // 4 bytes
	ChainCode   []byte       // 32 bytes
	Depth       byte         // 1 bytes
	IsPrivate   bool         // unserialized
	Bip32Ver    Bip32Version //unserialized
}

Key represents a bip32 extended key

func B58Deserialize

func B58Deserialize(data string, version Bip32Version) (*Key, error)

B58Deserialize deserializes a Key encoded in base58 encoding

func Deserialize

func Deserialize(data []byte) (*Key, error)

func Deserialize2

func Deserialize2(data []byte, version Bip32Version) (*Key, error)

Deserialize a byte slice into a Key

func NewMasterKey

func NewMasterKey(seed []byte) (*Key, error)

NewMasterKey creates a new master extended key from a seed

func NewMasterKey2

func NewMasterKey2(seed []byte, version Bip32Version) (*Key, error)

func (*Key) B58Serialize

func (key *Key) B58Serialize() string

B58Serialize encodes the Key in the standard Bitcoin base58 encoding

func (*Key) NewChildKey

func (key *Key) NewChildKey(childIdx uint32) (*Key, error)

NewChildKey derives a child key from a given parent as outlined by bip32

func (*Key) PublicKey

func (key *Key) PublicKey() *Key

PublicKey returns the public version of key or return a copy The 'Neuter' function from the bip32 spec

func (*Key) Serialize

func (key *Key) Serialize() ([]byte, error)

Serialize a Key to a 78 byte byte slice

func (*Key) String

func (key *Key) String() string

String encodes the Key in the standard Bitcoin base58 encoding

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL