- Bumped version of lol.mleku.dev from v1.0.4 to v1.0.5. - Added new dependencies: p256k1.mleku.dev and several indirect dependencies for improved cryptographic functionality. - Refactored p256k package to utilize p256k1.mleku.dev/signer for signature operations, replacing the previous btcec implementation. - Removed the secp256k1.go file, consolidating the crypto logic under the new p256k1 library. - Updated documentation to reflect changes in the signer interface and usage.
21 lines
527 B
Go
21 lines
527 B
Go
//go:build !cgo
|
|
|
|
package p256k
|
|
|
|
import (
|
|
"lol.mleku.dev/log"
|
|
p256k1signer "p256k1.mleku.dev/signer"
|
|
)
|
|
|
|
func init() {
|
|
log.T.Ln("using p256k1.mleku.dev/signer (pure Go/Btcec)")
|
|
}
|
|
|
|
// Signer is an alias for the BtcecSigner type from p256k1.mleku.dev/signer (btcec version).
|
|
// This is used when CGO is not available.
|
|
type Signer = p256k1signer.BtcecSigner
|
|
|
|
// Keygen is an alias for the P256K1Gen type from p256k1.mleku.dev/signer (btcec version).
|
|
type Keygen = p256k1signer.P256K1Gen
|
|
|
|
var NewKeygen = p256k1signer.NewP256K1Gen |