Documentation ¶
Index ¶
- Variables
- func EthSignature(prikey []byte, hash []byte) ([]byte, uint16)
- func GetTxSigner(symbol string) openwallet.TransactionSigner
- func IcxSignature(prikey []byte, hash []byte) ([]byte, uint16)
- func NasSignature(prikey []byte, hash []byte) ([]byte, uint16)
- func RegTxSigner(name string, manager openwallet.TransactionSigner, config ...config.Configer)
- func SignTxHash(symbol string, msg []byte, privateKey []byte, eccType uint32) ([]byte, error)
- func TronSignature(prikey []byte, hash []byte) ([]byte, uint16)
- func VSYSSignature(prikey, msg []byte) ([]byte, uint16)
Constants ¶
This section is empty.
Variables ¶
var ( CurveOrder = []byte{0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFE, 0xBA, 0xAE, 0xDC, 0xE6, 0xAF, 0x48, 0xA0, 0x3B, 0xBF, 0xD2, 0x5E, 0x8C, 0xD0, 0x36, 0x41, 0x41} HalfCurveOrder = []byte{0x7F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x5D, 0x57, 0x6E, 0x73, 0x57, 0xA4, 0x50, 0x1D, 0xDF, 0xE9, 0x2F, 0x46, 0x68, 0x1B, 0x20, 0xA0} )
Functions ¶
func EthSignature ¶
@function:ETH signature @paramter[in]prikey pointer to private key @paramter[in]hash pointer to the hash of message(Transaction txt) @parameter[out]the first part is signature(r||s||v,total 65 byte); the second part
func GetTxSigner ¶ added in v1.0.8
func GetTxSigner(symbol string) openwallet.TransactionSigner
GetTxSigner 根据币种类型获取已注册的交易签名工具
func IcxSignature ¶
@function:ICX signature @paramter[in]prikey pointer to private key @paramter[in]hash pointer to the hash of message(Transaction txt) @parameter[out]the first part is signature(r||s||v,total 65 byte); the second part
func NasSignature ¶
@function:NAS signature @paramter[in]prikey pointer to private key @paramter[in]hash pointer to the hash of message(Transaction txt) @parameter[out]the first part is signature(r||s||v,total 65 byte); the second part
func RegTxSigner ¶ added in v1.0.8
func RegTxSigner(name string, manager openwallet.TransactionSigner, config ...config.Configer)
RegTxSigner 注册交易签名工具 @param name 资产别名 @param manager 交易签名工具 @param config 加载配置
func SignTxHash ¶
signTxHash 签名交易单哈希
func TronSignature ¶
@function:Tron signature(ECDSA&&secp256k1) @paramter[in]prikey pointer to private key @paramter[in]hash pointer to the hash of message(Transaction txt) @parameter[out]the first part is signature(r||s||v,total 65 byte); the second part
func VSYSSignature ¶
Types ¶
This section is empty.