You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
462 B
9 lines
462 B
// Package p256k provides a signer interface that uses p256k1.mleku.dev library for |
|
// fast signature creation and verification of BIP-340 nostr X-only signatures and |
|
// public keys, and ECDH. |
|
// |
|
// The package provides type aliases to p256k1.mleku.dev/signer: |
|
// - cgo: Uses the CGO-optimized version from p256k1.mleku.dev |
|
// - btcec: Uses the btcec version from p256k1.mleku.dev |
|
// - default: Uses the pure Go version from p256k1.mleku.dev |
|
package p256k
|
|
|