Interface AgentKeyRecord

interface AgentKeyRecord {
    agentId: string;
    publicKey: string;
    encryptedPrivateKey?: string;
    createdAt: string;
    keyAlgorithm: string;
}

Properties

agentId: string

Agent instance ID.

publicKey: string

Base64-encoded Ed25519 public key.

encryptedPrivateKey?: string

Encrypted private key (optional, for server-side storage).

createdAt: string

ISO 8601 creation timestamp.

keyAlgorithm: string

Key algorithm identifier.