Documentation ¶
Index ¶
- Variables
- func BytesToPrivateKey(input []byte) (*ecdsa.PrivateKey, error)
- func CreateAddress(addr types.Address, nonce uint64) types.Address
- func CreateAddress2(addr types.Address, salt [32]byte, inithash []byte) types.Address
- func Ecrecover(hash, sig []byte) ([]byte, error)
- func GenerateAndEncodePrivateKey() (*ecdsa.PrivateKey, []byte, error)
- func GenerateKey() (*ecdsa.PrivateKey, error)
- func GenerateOrReadPrivateKey(path string) (*ecdsa.PrivateKey, error)
- func GetAddressFromKey(key goCrypto.PrivateKey) (types.Address, error)
- func Keccak256(v ...[]byte) []byte
- func MarshalPrivateKey(priv *ecdsa.PrivateKey) ([]byte, error)
- func MarshalPublicKey(pub *ecdsa.PublicKey) []byte
- func ParsePrivateKey(buf []byte) (*ecdsa.PrivateKey, error)
- func ParsePublicKey(buf []byte) (*ecdsa.PublicKey, error)
- func PubKeyToAddress(pub *ecdsa.PublicKey) types.Address
- func ReadConsensusKey(manager secrets.SecretsManager) (*ecdsa.PrivateKey, error)
- func RecoverPubkey(signature, hash []byte) (*ecdsa.PublicKey, error)
- func SigToPub(hash, sig []byte) (*ecdsa.PublicKey, error)
- func Sign(priv *ecdsa.PrivateKey, hash []byte) ([]byte, error)
- func ValidateSignatureValues(v byte, r, s *big.Int) bool
- type EIP155Signer
- func (e *EIP155Signer) CalculateV(parity byte) []byte
- func (e *EIP155Signer) Hash(tx *types.Transaction) types.Hash
- func (e *EIP155Signer) Sender(tx *types.Transaction) (types.Address, error)
- func (e *EIP155Signer) SignTx(tx *types.Transaction, privateKey *ecdsa.PrivateKey) (*types.Transaction, error)
- type FrontierSigner
- func (f *FrontierSigner) CalculateV(parity byte) []byte
- func (f *FrontierSigner) Hash(tx *types.Transaction) types.Hash
- func (f *FrontierSigner) Sender(tx *types.Transaction) (types.Address, error)
- func (f *FrontierSigner) SignTx(tx *types.Transaction, privateKey *ecdsa.PrivateKey) (*types.Transaction, error)
- type TxSigner
Constants ¶
This section is empty.
Variables ¶
var (
ErrEmptySignature = errors.New("empty signature")
)
var S256 = btcec.S256()
S256 is the secp256k1 elliptic curve
Functions ¶
func BytesToPrivateKey ¶
func BytesToPrivateKey(input []byte) (*ecdsa.PrivateKey, error)
BytesToPrivateKey reads the input byte array and constructs a private key if possible
func CreateAddress ¶
CreateAddress creates an Ethereum address.
func CreateAddress2 ¶
CreateAddress2 creates an Ethereum address following the CREATE2 Opcode.
func GenerateAndEncodePrivateKey ¶
func GenerateAndEncodePrivateKey() (*ecdsa.PrivateKey, []byte, error)
GenerateAndEncodePrivateKey returns a newly generated private key and the Base64 encoding of that private key
func GenerateKey ¶
func GenerateKey() (*ecdsa.PrivateKey, error)
GenerateKey generates a new key based on the secp256k1 elliptic curve.
func GenerateOrReadPrivateKey ¶
func GenerateOrReadPrivateKey(path string) (*ecdsa.PrivateKey, error)
GenerateOrReadPrivateKey generates a private key at the specified path, or reads it if a key file is present
func GetAddressFromKey ¶
func GetAddressFromKey(key goCrypto.PrivateKey) (types.Address, error)
GetAddressFromKey extracts an address from the private key
func MarshalPrivateKey ¶
func MarshalPrivateKey(priv *ecdsa.PrivateKey) ([]byte, error)
MarshalPrivateKey serializes the private key's D value to a []byte
func MarshalPublicKey ¶
MarshalPublicKey marshals a public key on the secp256k1 elliptic curve.
func ParsePrivateKey ¶
func ParsePrivateKey(buf []byte) (*ecdsa.PrivateKey, error)
func ParsePublicKey ¶
ParsePublicKey parses bytes into a public key on the secp256k1 elliptic curve.
func PubKeyToAddress ¶
PubKeyToAddress returns the Ethereum address of a public key
func ReadConsensusKey ¶
func ReadConsensusKey(manager secrets.SecretsManager) (*ecdsa.PrivateKey, error)
func RecoverPubkey ¶
RecoverPubkey verifies the compact signature "signature" of "hash" for the secp256k1 curve.
Types ¶
type EIP155Signer ¶
type EIP155Signer struct {
// contains filtered or unexported fields
}
func NewEIP155Signer ¶
func NewEIP155Signer(chainID uint64) *EIP155Signer
NewEIP155Signer returns a new EIP155Signer object
func (*EIP155Signer) CalculateV ¶
func (e *EIP155Signer) CalculateV(parity byte) []byte
calculateV returns the V value for transaction signatures. Based on EIP155
func (*EIP155Signer) Hash ¶
func (e *EIP155Signer) Hash(tx *types.Transaction) types.Hash
Hash is a wrapper function that calls calcTxHash with the EIP155Signer's chainID
func (*EIP155Signer) Sender ¶
func (e *EIP155Signer) Sender(tx *types.Transaction) (types.Address, error)
Sender returns the transaction sender
func (*EIP155Signer) SignTx ¶
func (e *EIP155Signer) SignTx( tx *types.Transaction, privateKey *ecdsa.PrivateKey, ) (*types.Transaction, error)
SignTx signs the transaction using the passed in private key
type FrontierSigner ¶
type FrontierSigner struct { }
func (*FrontierSigner) CalculateV ¶
func (f *FrontierSigner) CalculateV(parity byte) []byte
calculateV returns the V value for transactions pre EIP155
func (*FrontierSigner) Hash ¶
func (f *FrontierSigner) Hash(tx *types.Transaction) types.Hash
Hash is a wrapper function for the calcTxHash, with chainID 0
func (*FrontierSigner) Sender ¶
func (f *FrontierSigner) Sender(tx *types.Transaction) (types.Address, error)
Sender decodes the signature and returns the sender of the transaction
func (*FrontierSigner) SignTx ¶
func (f *FrontierSigner) SignTx( tx *types.Transaction, privateKey *ecdsa.PrivateKey, ) (*types.Transaction, error)
SignTx signs the transaction using the passed in private key
type TxSigner ¶
type TxSigner interface { // Hash returns the hash of the transaction Hash(tx *types.Transaction) types.Hash // Sender returns the sender of the transaction Sender(tx *types.Transaction) (types.Address, error) // SignTx signs a transaction SignTx(tx *types.Transaction, priv *ecdsa.PrivateKey) (*types.Transaction, error) // CalculateV calculates the V value based on the type of signer used CalculateV(parity byte) []byte }
TxSigner is a utility interface used to recover data from a transaction