Documentation ¶
Index ¶
- Variables
- func P256_sm2() elliptic.Curve
- func Sign(rand io.Reader, priv *PrivateKey, hash []byte) (r, s *big.Int, err error)
- func Verify(pub *PublicKey, hash []byte, r, s *big.Int) bool
- type PrivateKey
- func (prv *PrivateKey) Decrypt(c []byte) (m []byte, err error)
- func (prv *PrivateKey) Encrypt(rand io.Reader, pub *PublicKey, msg []byte) (ct []byte, err error)
- func (priv *PrivateKey) Public() crypto.PublicKey
- func (priv *PrivateKey) Sign(rand io.Reader, msg []byte, opts crypto.SignerOpts) ([]byte, error)
- type PublicKey
Constants ¶
This section is empty.
Variables ¶
var ( ErrKeyDataTooLong = fmt.Errorf("sm2: can't supply requested key data") ErrInvalidCurve = fmt.Errorf("sm2: invalid elliptic curve") ErrInvalidMessage = fmt.Errorf("sm2: invalid message") ErrTIsZero = fmt.Errorf("sm2: t is zero") ErrC3NoEqual = fmt.Errorf("sm2: c3` is not equal to c3") )
Functions ¶
func P256_sm2 ¶
P256_sm2 returns a Curve which implements sm2.
The cryptographic operations are implemented using constant-time algorithms.
func Sign ¶
Sign signs a hash (which should be the result of hashing a larger message) using the private key, priv. If the hash is longer than the bit-length of the private key's curve order, the hash will be truncated to that length. It returns the signature as a pair of integers. The security of the private key depends on the entropy of rand.
Types ¶
type PrivateKey ¶
PrivateKey represents a SM2 private key.
func GenerateKey ¶
GenerateKey generates a public and private key pair.
func (*PrivateKey) Public ¶
func (priv *PrivateKey) Public() crypto.PublicKey
Public returns the public key corresponding to priv.
func (*PrivateKey) Sign ¶
func (priv *PrivateKey) Sign(rand io.Reader, msg []byte, opts crypto.SignerOpts) ([]byte, error)
Sign signs msg with priv, reading randomness from rand. This method is intended to support keys where the private part is kept in, for example, a hardware module. Common uses should use the Sign function in this package directly.