Documentation ¶
Index ¶
- func ArrayToSlice(array [operation.Ed25519KeySize]byte) []byte
- func BLSKeyGen(seed []byte) (*big.Int, *bn256.G2)
- func BLSPKGen(sk *big.Int) *bn256.G2
- func BLSSKGen(seed []byte) *big.Int
- func BridgeKeyGen(seed []byte) (ecdsa.PrivateKey, ecdsa.PublicKey)
- func BridgePKBytes(pubKey *ecdsa.PublicKey) []byte
- func BridgeSKBytes(priKey *ecdsa.PrivateKey) []byte
- func SliceToArray(slice []byte) [operation.Ed25519KeySize]byte
- type OTAKey
- type PaymentAddress
- func (addr *PaymentAddress) Bytes() []byte
- func (addr PaymentAddress) GetOTAPublicKey() *operation.Point
- func (addr PaymentAddress) GetPublicSpend() *operation.Point
- func (addr PaymentAddress) GetPublicView() *operation.Point
- func (addr *PaymentAddress) SetBytes(bytes []byte) error
- func (addr PaymentAddress) String() string
- type PaymentInfo
- type PrivateKey
- type PrivateOTAKey
- type PublicKey
- type PublicOTAKey
- type ReceivingKey
- type TransmissionKey
- type ViewingKey
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ArrayToSlice ¶
func ArrayToSlice(array [operation.Ed25519KeySize]byte) []byte
func BridgeKeyGen ¶
func BridgeKeyGen(seed []byte) (ecdsa.PrivateKey, ecdsa.PublicKey)
func BridgePKBytes ¶
func BridgeSKBytes ¶
func BridgeSKBytes(priKey *ecdsa.PrivateKey) []byte
func SliceToArray ¶
func SliceToArray(slice []byte) [operation.Ed25519KeySize]byte
Types ¶
type OTAKey ¶
type OTAKey struct {
// contains filtered or unexported fields
}
OTAKey is a pair of keys used to recover coin's one-time-address
func GenerateOTAKey ¶
func (OTAKey) GetOTASecretKey ¶
func (OTAKey) GetPublicSpend ¶
func (*OTAKey) SetOTASecretKey ¶
func (*OTAKey) SetPublicSpend ¶
type PaymentAddress ¶
type PaymentAddress struct { Pk PublicKey // 32 bytes, use to receive coin (CoinV1) Tk TransmissionKey // 32 bytes, use to encrypt pointByte OTAPublic PublicOTAKey //32 bytes, used to receive coin (CoinV2) }
PaymentAddress is an address of the payee
func GeneratePaymentAddress ¶
func GeneratePaymentAddress(privateKey []byte) PaymentAddress
GeneratePaymentAddress generates a payment address corresponding to a spending key
func (*PaymentAddress) Bytes ¶
func (addr *PaymentAddress) Bytes() []byte
Bytes converts payment address to bytes array
func (PaymentAddress) GetOTAPublicKey ¶
func (addr PaymentAddress) GetOTAPublicKey() *operation.Point
func (PaymentAddress) GetPublicSpend ¶
func (addr PaymentAddress) GetPublicSpend() *operation.Point
func (PaymentAddress) GetPublicView ¶
func (addr PaymentAddress) GetPublicView() *operation.Point
func (*PaymentAddress) SetBytes ¶
func (addr *PaymentAddress) SetBytes(bytes []byte) error
SetBytes reverts bytes array to payment address
func (PaymentAddress) String ¶
func (addr PaymentAddress) String() string
String encodes a payment address as a hex string
type PaymentInfo ¶
type PaymentInfo struct { PaymentAddress PaymentAddress Amount uint64 Message []byte // 512 bytes }
PaymentInfo contains an address of a payee and a value of coins he/she will receive
func InitPaymentInfo ¶
func InitPaymentInfo(addr PaymentAddress, amount uint64, message []byte) *PaymentInfo
type PrivateKey ¶
type PrivateKey []byte
32-byte spending key
func GeneratePrivateKey ¶
func GeneratePrivateKey(seed []byte) PrivateKey
GeneratePrivateKey generates a random 32-byte spending key
type PrivateOTAKey ¶
type PrivateOTAKey []byte
32-byte secret key: used to check if a coin belongs to a receiver (for receivers of COIN2 only)
func GeneratePrivateOTAKey ¶
func GeneratePrivateOTAKey(privateKey []byte) PrivateOTAKey
type PublicKey ¶
type PublicKey []byte
32-byte public key
func GeneratePublicKey ¶
GeneratePublicKey computes a 32-byte public-key corresponding to a spending key
type PublicOTAKey ¶
type PublicOTAKey []byte
32-byte public OTA key: used to generate one-time-address coin (for senders of COINV2 only)
func GeneratePublicOTAKey ¶
func GeneratePublicOTAKey(privateOTAKey PrivateOTAKey) PublicOTAKey
type ReceivingKey ¶
type ReceivingKey []byte
32-byte receiving key
func GenerateReceivingKey ¶
func GenerateReceivingKey(privateKey []byte) ReceivingKey
GenerateReceivingKey generates a 32-byte receiving key
type TransmissionKey ¶
type TransmissionKey []byte
32-byte transmission key
func GenerateTransmissionKey ¶
func GenerateTransmissionKey(receivingKey []byte) TransmissionKey
GenerateTransmissionKey computes a 33-byte transmission key corresponding to a receiving key
type ViewingKey ¶
type ViewingKey struct { Pk PublicKey // 33 bytes, use to receive coin Rk ReceivingKey // 32 bytes, use to decrypt pointByte }
ViewingKey is a public/private key pair to encrypt coins in an outgoing transaction
func GenerateViewingKey ¶
func GenerateViewingKey(privateKey []byte) ViewingKey
GenerateViewingKey generates a viewingKey corresponding to a spending key
func (ViewingKey) GetPrivateView ¶
func (viewKey ViewingKey) GetPrivateView() *operation.Scalar
func (ViewingKey) GetPublicSpend ¶
func (viewKey ViewingKey) GetPublicSpend() *operation.Point