refactor: replace Yonexus.Client dependency with Protocol crypto

Server no longer needs Yonexus.Client at build or runtime.
verifySignature, generateKeyPair, signMessage now imported from Protocol.
This commit is contained in:
nav
2026-04-16 10:37:01 +00:00
parent 6bfa0f3f28
commit ea764f637e
4 changed files with 4 additions and 4 deletions

View File

@@ -38,7 +38,7 @@ import {
type ClientRecord,
type ServerRegistry
} from "./persistence.js";
import { verifySignature } from "../../../Yonexus.Client/plugin/crypto/keypair.js";
import { verifySignature } from "../../../Yonexus.Protocol/src/crypto.js";
import type { YonexusServerStore } from "./store.js";
import { type ClientConnection, type ServerTransport } from "./transport.js";
import { createPairingService, type PairingService } from "../services/pairing.js";