feat: add crypto module (Ed25519 key generation, sign, verify)

Moves verifySignature, signMessage, generateKeyPair and utility functions
from Yonexus.Client into Protocol so Server no longer depends on Client
at build time or runtime.
This commit is contained in:
nav
2026-04-16 10:36:55 +00:00
parent d2a16bcb02
commit ccdf167daf
2 changed files with 50 additions and 0 deletions

View File

@@ -2,3 +2,4 @@ export * from "./types.js";
export * from "./codec.js";
export * from "./errors.js";
export * from "./auth.js";
export * from "./crypto.js";