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

@@ -14,10 +14,10 @@ import (
"next.orly.dev/app/config"
"next.orly.dev/pkg/encoders/event"
"next.orly.dev/pkg/encoders/tag"
"next.orly.dev/pkg/interfaces/signer/p8k"
"next.orly.dev/pkg/policy"
"next.orly.dev/pkg/run"
relaytester "next.orly.dev/relay-tester"
p256k1signer "p256k1.mleku.dev/signer"
)
// TestClusterPeerPolicyFiltering tests cluster peer synchronization with policy filtering.
@@ -100,7 +100,7 @@ func TestClusterPeerPolicyFiltering(t *testing.T) {
}
// Generate test keys
signer := p256k1signer.NewP256K1Signer()
signer := p8k.MustNew()
if err := signer.Generate(); err != nil {
t.Fatalf("Failed to generate test signer: %v", err)
}
@@ -257,7 +257,7 @@ func waitForTestRelay(url string, timeout time.Duration) error {
}
// createTestEvent creates a test event with proper signing
func createTestEvent(t *testing.T, signer *p256k1signer.P256K1Signer, content string, eventKind uint16) *event.E {
func createTestEvent(t *testing.T, signer *p8k.Signer, content string, eventKind uint16) *event.E {
ev := event.New()
ev.CreatedAt = time.Now().Unix()
ev.Kind = eventKind