Documentation ¶
Overview ¶
包secp256k1包装比特币secp256k1 c库。
Index ¶
- Variables
- func CompressPubkey(x, y *big.Int) []byte
- func DecompressPubkey(pubkey []byte) (x, y *big.Int)
- func RecoverPubkey(msg []byte, sig []byte) ([]byte, error)
- func Sign(msg []byte, seckey []byte) ([]byte, error)
- func VerifySignature(pubkey, msg, signature []byte) bool
- type BitCurve
- func (BitCurve *BitCurve) Add(x1, y1, x2, y2 *big.Int) (*big.Int, *big.Int)
- func (BitCurve *BitCurve) Double(x1, y1 *big.Int) (*big.Int, *big.Int)
- func (BitCurve *BitCurve) IsOnCurve(x, y *big.Int) bool
- func (BitCurve *BitCurve) Marshal(x, y *big.Int) []byte
- func (BitCurve *BitCurve) Params() *elliptic.CurveParams
- func (BitCurve *BitCurve) ScalarBaseMult(k []byte) (*big.Int, *big.Int)
- func (BitCurve *BitCurve) ScalarMult(Bx, By *big.Int, scalar []byte) (*big.Int, *big.Int)
- func (BitCurve *BitCurve) Unmarshal(data []byte) (x, y *big.Int)
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ErrInvalidMsgLen = errors.New("invalid message length, need 32 bytes") ErrInvalidSignatureLen = errors.New("invalid signature length") ErrInvalidRecoveryID = errors.New("invalid signature recovery id") ErrInvalidKey = errors.New("invalid private key") ErrInvalidPubkey = errors.New("invalid public key") ErrSignFailed = errors.New("signing failed") ErrRecoverFailed = errors.New("recovery failed") )
Functions ¶
func DecompressPubkey ¶
DecompressPubkey parses a public key in the 33-byte compressed format. 如果公钥有效,则返回非零坐标。
func RecoverPubkey ¶
recoverpubkey返回签名者的公钥。 msg必须是要签名的消息的32字节哈希。 SIG必须是包含 作为最后一个元素的恢复ID。
func Sign ¶
签名创建可恢复的ECDSA签名。 生成的签名采用65字节的格式,其中v为0或1。
调用者负责确保不能选择消息 由攻击者直接攻击。通常最好使用密码 在将任何输入传递给此函数之前,对其执行哈希函数。
func VerifySignature ¶
验证签名检查给定的PUBKEY在消息上创建签名。 签名应采用[R S]格式。
Types ¶
type BitCurve ¶
type BitCurve struct { P *big.Int //基础字段的顺序 N *big.Int //基点顺序 B *big.Int //比特库夫方程的常数 Gx, Gy *big.Int //基点的(x,y) BitSize int //基础字段的大小 }
Bitcurve表示a=0的Koblitz曲线。 See http://www.hyperelliptic.org/EFD/g1p/auto-shortw.html
func (*BitCurve) Params ¶
func (BitCurve *BitCurve) Params() *elliptic.CurveParams
func (*BitCurve) ScalarBaseMult ¶
scalarbasemult返回k*g,其中g是组的基点,k是 大尾数形式的整数。
func (*BitCurve) ScalarMult ¶
Click to show internal directories.
Click to hide internal directories.