Documentation ¶
Index ¶
- Constants
- Variables
- type FromAddress
- func (kp *FromAddress) Address() string
- func (kp *FromAddress) FromAddress() *FromAddress
- func (kp *FromAddress) Hint() (r [4]byte)
- func (kp *FromAddress) MarshalText() ([]byte, error)
- func (kp *FromAddress) Sign(input []byte) ([]byte, error)
- func (kp *FromAddress) SignBase64(input []byte) (string, error)
- func (kp *FromAddress) SignDecorated(input []byte) (xdr.DecoratedSignature, error)
- func (kp *FromAddress) UnmarshalText(text []byte) error
- func (kp *FromAddress) Verify(input []byte, sig []byte) error
- type Full
- func (kp *Full) Address() string
- func (kp *Full) FromAddress() *FromAddress
- func (kp *Full) Hint() (r [4]byte)
- func (kp *Full) Seed() string
- func (kp *Full) Sign(input []byte) ([]byte, error)
- func (kp *Full) SignBase64(input []byte) (string, error)
- func (kp *Full) SignDecorated(input []byte) (xdr.DecoratedSignature, error)
- func (kp *Full) Verify(input []byte, sig []byte) error
- type KP
Constants ¶
const ( // DefaultSignerWeight represents the starting weight of the default signer // for an account. DefaultSignerWeight = 1 )
Variables ¶
var ( // ErrInvalidKey will be returned by operations when the keypair being used // could not be decoded. ErrInvalidKey = errors.New("invalid key") // ErrInvalidSignature is returned when the signature is invalid, either // through malformation or if it does not verify the message against the // provided public key ErrInvalidSignature = errors.New("signature verification failed") // ErrCannotSign is returned when attempting to sign a message when // the keypair does not have the secret key available ErrCannotSign = errors.New("cannot sign") )
Functions ¶
This section is empty.
Types ¶
type FromAddress ¶
type FromAddress struct {
// contains filtered or unexported fields
}
FromAddress represents a keypair to which only the address is know. This KP can verify signatures, but cannot sign them.
NOTE: ensure the address provided is a valid strkey encoded stellar address. Some operations will panic otherwise. It's recommended that you create these structs through the Parse() method.
func MustParseAddress ¶
func MustParseAddress(address string) *FromAddress
MustParseAddress is the panic-on-fail version of ParseAddress
func ParseAddress ¶
func ParseAddress(address string) (*FromAddress, error)
ParseAddress constructs a new FromAddress keypair from the provided string, which should be an address.
func (*FromAddress) Address ¶
func (kp *FromAddress) Address() string
func (*FromAddress) FromAddress ¶
func (kp *FromAddress) FromAddress() *FromAddress
FromAddress gets the address-only representation, or public key, of this keypair, which is itself.
func (*FromAddress) Hint ¶
func (kp *FromAddress) Hint() (r [4]byte)
func (*FromAddress) MarshalText ¶
func (kp *FromAddress) MarshalText() ([]byte, error)
func (*FromAddress) SignBase64 ¶
func (kp *FromAddress) SignBase64(input []byte) (string, error)
func (*FromAddress) SignDecorated ¶
func (kp *FromAddress) SignDecorated(input []byte) (xdr.DecoratedSignature, error)
func (*FromAddress) UnmarshalText ¶
func (kp *FromAddress) UnmarshalText(text []byte) error
type Full ¶
type Full struct {
// contains filtered or unexported fields
}
func FromRawSeed ¶
FromRawSeed creates a new keypair from the provided raw ED25519 seed
func MustParseFull ¶
MustParseFull is the panic-on-fail version of ParseFull
func ParseFull ¶
ParseFull constructs a new Full keypair from the provided string, which should be a seed.
func (*Full) FromAddress ¶
func (kp *Full) FromAddress() *FromAddress
FromAddress gets the address-only representation, or public key, of this Full keypair.
func (*Full) SignBase64 ¶
SignBase64 signs the input data and returns a base64 encoded string, the common format in which signatures are exchanged.
func (*Full) SignDecorated ¶
func (kp *Full) SignDecorated(input []byte) (xdr.DecoratedSignature, error)
type KP ¶
type KP interface { Address() string FromAddress() *FromAddress Hint() [4]byte Verify(input []byte, signature []byte) error Sign(input []byte) ([]byte, error) SignBase64(input []byte) (string, error) SignDecorated(input []byte) (xdr.DecoratedSignature, error) }
KP is the main interface for this package