Function generateEd25519IdentityKeyPair

  • Generate an Ed25519 identity key pair for signing operations. Since the keys module doesn't directly support Ed25519 key generation, we'll fall back to using Web Crypto API directly.

    Returns Promise<{ privateKey: CryptoKey; publicKey: CryptoKey }>