Refactor signer implementation to use p8k package
Some checks failed
Go / build (push) Has been cancelled
Go / release (push) Has been cancelled

- Replaced all instances of p256k1signer with the new p8k.Signer across various modules, including event creation, policy handling, and database interactions.
- Updated related test cases and benchmarks to ensure compatibility with the new signer interface.
- Bumped version to v0.25.0 to reflect these significant changes and improvements in cryptographic operations.
This commit is contained in:
2025-11-04 20:05:19 +00:00
parent effb3fafc1
commit e0a95ca1cd
70 changed files with 8667 additions and 124 deletions

View File

@@ -12,10 +12,10 @@ import (
"golang.org/x/crypto/hkdf"
"lol.mleku.dev/chk"
"lol.mleku.dev/errorf"
p256k1signer "p256k1.mleku.dev/signer"
"github.com/minio/sha256-simd"
"next.orly.dev/pkg/encoders/hex"
"next.orly.dev/pkg/interfaces/signer"
"next.orly.dev/pkg/interfaces/signer/p8k"
"next.orly.dev/pkg/utils"
)
@@ -176,8 +176,10 @@ func GenerateConversationKeyFromHex(pkh, skh string) (ck []byte, err error) {
)
return
}
var sign signer.I
sign = p256k1signer.NewP256K1Signer()
var sign *p8k.Signer
if sign, err = p8k.New(); chk.E(err) {
return
}
var sk []byte
if sk, err = hex.Dec(skh); chk.E(err) {
return
@@ -190,7 +192,7 @@ func GenerateConversationKeyFromHex(pkh, skh string) (ck []byte, err error) {
return
}
var shared []byte
if shared, err = sign.ECDH(pk); chk.E(err) {
if shared, err = sign.ECDHRaw(pk); chk.E(err) {
return
}
ck = hkdf.Extract(sha256.New, shared, []byte("nip44-v2"))
@@ -201,7 +203,7 @@ func GenerateConversationKeyWithSigner(sign signer.I, pk []byte) (
ck []byte, err error,
) {
var shared []byte
if shared, err = sign.ECDH(pk); chk.E(err) {
if shared, err = sign.ECDHRaw(pk); chk.E(err) {
return
}
ck = hkdf.Extract(sha256.New, shared, []byte("nip44-v2"))