Documentation ¶
Overview ¶
Package secp256k1 allows simple and abstracted operations in the Secp256k1 group.
Index ¶
- Constants
- func New() internal.Group
- type Element
- func (e *Element) Add(element internal.Element) internal.Element
- func (e *Element) Base() internal.Element
- func (e *Element) Copy() internal.Element
- func (e *Element) Decode(data []byte) error
- func (e *Element) DecodeHex(h string) error
- func (e *Element) Double() internal.Element
- func (e *Element) Encode() []byte
- func (e *Element) Equal(element internal.Element) int
- func (e *Element) Hex() string
- func (e *Element) Identity() internal.Element
- func (e *Element) IsIdentity() bool
- func (e *Element) Multiply(scalar internal.Scalar) internal.Element
- func (e *Element) Negate() internal.Element
- func (e *Element) Set(element internal.Element) internal.Element
- func (e *Element) Subtract(element internal.Element) internal.Element
- func (e *Element) XCoordinate() []byte
- type Group
- func (g Group) Base() internal.Element
- func (g Group) Ciphersuite() string
- func (g Group) ElementLength() int
- func (g Group) EncodeToGroup(input, dst []byte) internal.Element
- func (g Group) HashFunc() crypto.Hash
- func (g Group) HashToGroup(input, dst []byte) internal.Element
- func (g Group) HashToScalar(input, dst []byte) internal.Scalar
- func (g Group) NewElement() internal.Element
- func (g Group) NewScalar() internal.Scalar
- func (g Group) Order() string
- func (g Group) ScalarLength() int
- type Scalar
- func (s *Scalar) Add(scalar internal.Scalar) internal.Scalar
- func (s *Scalar) Copy() internal.Scalar
- func (s *Scalar) Decode(in []byte) error
- func (s *Scalar) DecodeHex(h string) error
- func (s *Scalar) Encode() []byte
- func (s *Scalar) Equal(scalar internal.Scalar) int
- func (s *Scalar) Hex() string
- func (s *Scalar) Invert() internal.Scalar
- func (s *Scalar) IsZero() bool
- func (s *Scalar) LessOrEqual(scalar internal.Scalar) int
- func (s *Scalar) Multiply(scalar internal.Scalar) internal.Scalar
- func (s *Scalar) One() internal.Scalar
- func (s *Scalar) Pow(scalar internal.Scalar) internal.Scalar
- func (s *Scalar) Random() internal.Scalar
- func (s *Scalar) Set(scalar internal.Scalar) internal.Scalar
- func (s *Scalar) SetUInt64(i uint64) internal.Scalar
- func (s *Scalar) Subtract(scalar internal.Scalar) internal.Scalar
- func (s *Scalar) UInt64() (uint64, error)
- func (s *Scalar) Zero() internal.Scalar
Constants ¶
const ( // H2CSECP256K1 represents the hash-to-curve string identifier for Secp256k1. H2CSECP256K1 = "secp256k1_XMD:SHA-256_SSWU_RO_" // E2CSECP256K1 represents the encode-to-curve string identifier for Secp256k1. E2CSECP256K1 = "secp256k1_XMD:SHA-256_SSWU_NU_" )
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Element ¶
type Element struct {
// contains filtered or unexported fields
}
Element implements the Element interface for the Secp256k1 group element.
func (*Element) Add ¶
Add sets the receiver to the sum of the input and the receiver, and returns the receiver.
func (*Element) Decode ¶
Decode sets the receiver to a decoding of the input data, and returns an error on failure.
func (*Element) DecodeHex ¶ added in v0.7.0
DecodeHex sets e to the decoding of the hex encoded element.
func (*Element) Identity ¶
Identity sets the element to the point at infinity of the Group's underlying curve.
func (*Element) IsIdentity ¶
IsIdentity returns whether the Element is the point at infinity of the Group's underlying curve.
func (*Element) Multiply ¶
Multiply sets the receiver to the scalar multiplication of the receiver with the given Scalar, and returns it.
func (*Element) Subtract ¶
Subtract subtracts the input from the receiver, and returns the receiver.
func (*Element) XCoordinate ¶
XCoordinate returns the encoded x coordinate of the element, which is the same as Encode().
type Group ¶
type Group struct{}
Group represents the Secp256k1 group. It exposes a prime-order group API with hash-to-curve operations.
func (Group) Ciphersuite ¶
Ciphersuite returns the hash-to-curve ciphersuite identifier.
func (Group) ElementLength ¶
ElementLength returns the byte size of an encoded element.
func (Group) EncodeToGroup ¶
EncodeToGroup returns a non-uniform mapping of the arbitrary input to an Element in the Group. The DST must not be empty or nil, and is recommended to be longer than 16 bytes.
func (Group) HashFunc ¶ added in v0.7.1
HashFunc returns the RFC9380 associated hash function of the group.
func (Group) HashToGroup ¶
HashToGroup returns a safe mapping of the arbitrary input to an Element in the Group. The DST must not be empty or nil, and is recommended to be longer than 16 bytes.
func (Group) HashToScalar ¶
HashToScalar returns a safe mapping of the arbitrary input to a Scalar. The DST must not be empty or nil, and is recommended to be longer than 16 bytes.
func (Group) NewElement ¶
NewElement returns the identity element (point at infinity).
func (Group) ScalarLength ¶
ScalarLength returns the byte size of an encoded scalar.
type Scalar ¶
type Scalar struct {
// contains filtered or unexported fields
}
Scalar implements the Scalar interface for Edwards25519 group scalars.
func (*Scalar) Add ¶
Add sets the receiver to the sum of the input and the receiver, and returns the receiver.
func (*Scalar) Decode ¶
Decode sets the receiver to a decoding of the input data, and returns an error on failure.
func (*Scalar) DecodeHex ¶ added in v0.7.0
DecodeHex sets s to the decoding of the hex encoded scalar.
func (*Scalar) LessOrEqual ¶
LessOrEqual returns 1 if s <= scalar and 0 otherwise.
func (*Scalar) Multiply ¶
Multiply multiplies the receiver with the input, and returns the receiver.
func (*Scalar) Pow ¶
Pow sets s to s**scalar modulo the group order, and returns s. If scalar is nil, it returns 1.
func (*Scalar) Random ¶
Random sets the current scalar to a new random scalar and returns it. The random source is crypto/rand, and this functions is guaranteed to return a non-zero scalar.
func (*Scalar) Set ¶
Set sets the receiver to the value of the argument scalar, and returns the receiver.
func (*Scalar) SetUInt64 ¶ added in v0.7.0
SetUInt64 sets s to i modulo the field order, and returns an error if one occurs.